#1194: Infinite login prompt in web ui through reverse proxy
----------------------+-----------------------------------------------------
Reporter: non7top | Owner:
Type: patch | Status: reopened
Priority: major | Milestone: 1.3.x
Component: webui | Version: 1.3.0_dev
Resolution: | Keywords:
----------------------+-----------------------------------------------------
Comment(by Motiejus):
Actual nginx configuration that worked for me:
location /deluge/ {
proxy_pass http://127.0.0.1:8112/;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_header Set-Cookie;
proxy_pass_header P3P;
}
Note that with proxy_pass_header Set-Cookie; set it doesn't work without
the patch for the same reason mentioned.
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1194#comment:3>
Deluge <http://deluge-torrent.org/>
Deluge project
--
You received this message because you are subscribed to the Google Groups
"Deluge Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/deluge-dev?hl=en.