Page 1 of 1

Reverse Proxy Messy page?

Posted: Thu Feb 22, 2018 8:42 pm
by slimshizn
Setup using the page http://dev.deluge-torrent.org/wiki/User ... verseProxy

Came up with this messy ugly page, not sure what to change to have it working like usual. It's being RP'd through Nginx. Deluge is on a different OS than nginx but that shouldn't matter. Any help would be great here. Thanks.

Re: Reverse Proxy Messy page?

Posted: Thu Feb 22, 2018 8:46 pm
by slimshizn
Wanted to add that the dev console is showing this.

deluge:16 GET https://my.website.com/deluge/css/deluge.css net::ERR_ABORTED
deluge:15 GET https://my.website.com/deluge/css/ext-extensions.css net::ERR_ABORTED
deluge:13 GET https://my.website.com/deluge/css/ext-all-notheme.css net::ERR_ABORTED
ext-all.js:11 Failed to load '' as a plugin, because the frame into which the plugin is loading is sandboxed.
(anonymous) @ ext-all.js:11
W @ ext-all.js:11
i @ ext-all.js:11
g @ ext-all.js:11
(anonymous) @ VM357:2
T.e.string.f.function.c.(anonymous function) @ VM381:51
(anonymous) @ VM357:2
b @ VM357:1
(anonymous) @ VM357:2
T @ VM381:51
l @ VM381:49
ext-all.js:11 Failed to load '' as a plugin, because the frame into which the plugin is loading is sandboxed.
(anonymous) @ ext-all.js:11
setTimeout (async)
(anonymous) @ ext-all.js:11
W @ ext-all.js:11
i @ ext-all.js:11
g @ ext-all.js:11
(anonymous) @ VM357:2
T.e.string.f.function.c.(anonymous function) @ VM381:51
(anonymous) @ VM357:2
b @ VM357:1
(anonymous) @ VM357:2
T @ VM381:51
l @ VM381:49
blocklist.js:192 Uncaught TypeError: Cannot read property 'get_status' of undefined
at L.onUpdate (VM231 blocklist.js:192)
at i (VM217 ext-base.js:7)
onUpdate @ blocklist.js:192
i @ ext-base.js:7
setInterval (async)
h @ ext-base.js:7
start @ ext-base.js:7
initComponent @ blocklist.js:165
Ext.Component @ ext-all.js:7
L @ ext-base.js:7
L @ ext-base.js:7
L @ ext-base.js:7
L @ ext-base.js:7
onEnable @ blocklist.js:282
enable @ deluge-all.js:1600
initialize @ deluge-all.js:1792
(anonymous) @ deluge-all.js:1792
(anonymous) @ ext-all.js:7
b @ ext-all.js:7
setInterval (async)
e.delay @ ext-all.js:7
(anonymous) @ ext-all.js:7
fire @ ext-all.js:7
b @ ext-all.js:7
(anonymous) @ VM357:2
T.e.string.f.function.c.(anonymous function) @ VM381:51
(anonymous) @ VM357:2
b @ VM357:1
(anonymous) @ VM357:2
T @ VM381:51
l @ VM381:49
s.gif:1 GET https://my.website.com/deluge/images/s.gif 500 ()


OUTSIDE of my RP, it works fine. Zero issues.

Re: Reverse Proxy Messy page?

Posted: Thu Feb 22, 2018 11:26 pm
by slimshizn
Saw this post for an apache fix, tried it for my uses and it gives me a "No such resource" page on the reverse proxy.

http://forum.deluge-torrent.org/viewtopic.php?t=54124

Re: Reverse Proxy Messy page?

Posted: Mon Apr 30, 2018 12:48 am
by Rockapella
I am having this same issue.. Did you ever find a fix?

Re: Reverse Proxy Messy page?

Posted: Sat Dec 29, 2018 10:19 am
by Dana349
I think I am also facing this issue. Did you get any proper solution?
mybkexperience

Re: Reverse Proxy Messy page?

Posted: Tue Jan 15, 2019 2:26 am
by mwally7
iFelix wrote:Try this:

Code: Select all

location /deluge/ {
    proxy_pass http://localhost:8112/;
    proxy_set_header X-Deluge-Base "/deluge/";
    include proxy-control.conf;
    add_header X-Frame-Options SAMEORIGIN;
}
Above from another post is what worked for me, I had whats below and it wasn't working.

Code: Select all

location /deluge {
    proxy_pass http://localhost:8112/;
    proxy_set_header X-Deluge-Base "/deluge/";
    include proxy-control.conf;
    add_header X-Frame-Options SAMEORIGIN;
}

Re: Reverse Proxy Messy page?

Posted: Thu Feb 11, 2021 6:09 pm
by harrycharlesop
mwally7 wrote:
iFelix wrote:Try this:

Code: Select all

location /deluge/ {
    proxy_pass http://localhost:8112/;
    proxy_set_header X-Deluge-Base "/deluge/";
    include proxy-control.conf;
    add_header X-Frame-Options SAMEORIGIN;
}
https://www.imybkexperience.com/

Above from another post is what worked for me, I had whats below and it wasn't working.

Code: Select all

location /deluge {
    proxy_pass http://localhost:8112/;
    proxy_set_header X-Deluge-Base "/deluge/";
    include proxy-control.conf;
    add_header X-Frame-Options SAMEORIGIN;
}


thanks helped me with my problem