Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure Combustion with NGINX reverse proxy #40

Closed
sebdanielsson opened this issue Nov 13, 2019 · 1 comment
Closed

Configure Combustion with NGINX reverse proxy #40

sebdanielsson opened this issue Nov 13, 2019 · 1 comment

Comments

@sebdanielsson
Copy link

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;
}

@meliurwen
Copy link

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;
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants