You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've set up reverse proxy against Transmission. When I visit my domain I get the window that asks for my credentials. After entering this I just get a blanc page. However the HTML title loads. What am I doing wrong? The WebUI loads fine when entering the local IP but not via the domain name. I've disabled "rpc-whitelist-enabled".
I have this in my nginx config:
location / {
proxy_pass http://127.0.0.1:9091;
include nginxconfig.io/proxy.conf;
}
The text was updated successfully, but these errors were encountered:
Tip: Remember to use the markdown, especially for code snippets ;)
This is not this theme nor a Transmission's issue; maybe some forum, Stack Overflow thread or manpage about reverse-proxies and nginx can be more useful.
Btw try to replace the snippet you posted with something similar to this, it's untested but should work:
upstream transmission {
server 127.0.0.1:9091;
}
server {
server_name transmission.domain.tld;
listen 80;
location / {
proxy_pass http://transmission;
}
}
I've set up reverse proxy against Transmission. When I visit my domain I get the window that asks for my credentials. After entering this I just get a blanc page. However the HTML title loads. What am I doing wrong? The WebUI loads fine when entering the local IP but not via the domain name. I've disabled "rpc-whitelist-enabled".
I have this in my nginx config:
location / {
proxy_pass http://127.0.0.1:9091;
include nginxconfig.io/proxy.conf;
}
The text was updated successfully, but these errors were encountered: