Sample Header Ad - 728x90

Get transmission web interface working with web server

4 votes
5 answers
19375 views
I have my working on default port and I want to be able to use the web interface with an URL like http://my.domain/torrents . I tried adding a location and a proxy conf to Nginx but it fail to work fully. I guess it's because of web interface redirections. server { root /data/www; autoindex on; server_name localhost; location / { try_files $uri $uri/ /index.html; } location /torrents/ { proxy_pass_header X-Transmission-Session-Id; proxy_pass http://127.0.0.1:9091 ; } } This conf fail because it can't reach /transmission/rpc (404 /usr/share/transmission/web/rpc) I have tried many things and I always have something missing. transmission/rpc or transmission/upload or transmission/web or transmission/javascript/whatever...
Asked by Cyrbil (389 rep)
Feb 14, 2013, 08:11 PM
Last activity: Jun 7, 2023, 05:42 PM