Score:0

Redirect Transmission port 9091 to 80 on Ubuntu serving with Nginx

us flag

The admin of my network is ceaselessly disabling and enabling ports. I want my transmission Web UI to be served over port 80 instead of 9091. My server is running on Nginx not Apache (Apache solution).

Port 9091 is disabled by the firewall.

I created a new file /etc/nginx/conf.d/transmission.conf with the following:

server {
    listen       9091;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/transmission/web;
        index  index.html index.htm;
    }

Then:

sudo systemctl reload nginx.service
sudo systemctl restart nginx.service

But I still cannot access transmission Web UI.

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.