Artificial intelligent assistant

Get transmission web interface working with web server I have my working on default port and I want to be able to use the web interface with an URL like ` 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 } } 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`...

I was able to get this working just now with the following location in my config:


location /transmission {
proxy_pass
proxy_pass_header X-Transmission-Session-Id;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}


When I went to `/transmission/`, I got a 409 error saying that I had an invalid `X-Transmission-Session-Id` header, but when I went to `/transmission/web` everything seemed to be okay.

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 7d95a024323542925f9ff4033c2885ad