Page 1 of 1

Deluge & Nginx Reverse Proxy

Posted: Mon Jun 08, 2020 10:04 pm
by saisaijo
Hi everyone,


I've just managed to configure nginx to use deluge through reverse proxy and https.
I've managed to login through the reverse proxy, but the web ui looks really weird...
When i log in http://localhost, it looks normal, but see the attached pic when I do it via https reverse proxy.

Image

nginx config:

location /deluge {
proxy_pass http://localhost:38081/;
proxy_set_header X-Deluge-Base "/deluge/";
add_header X-Frame-Options SAMEORIGIN;
}


Any ideas what may cause this?

Regards