Search found 3 matches

by tolaris
Sun May 20, 2018 7:30 am
Forum: Support
Topic: deluge doesnt send intermediate ssl certificate for webui (still?)
Replies: 3
Views: 3768

Re: deluge doesnt send intermediate ssl certificate for webui (still?)

Note that the ticket ( https://dev.deluge-torrent.org/ticket/3064 ) shows it is fixed in 1.3.16. The repo has 1.3.15. Should be safe to patch as I've done and it'll be overwritten with the next release, but that will have the fix.
by tolaris
Sun May 20, 2018 7:27 am
Forum: Support
Topic: deluge doesnt send intermediate ssl certificate for webui (still?)
Replies: 3
Views: 3768

Re: deluge doesnt send intermediate ssl certificate for webui (still?)

I manually applied the patch and restarted Deluge Web, and it worked. To be clear: Edit /usr/lib/python2.7/dist-packages/deluge/ui/web/server.py as root (use sudo). Change this line: options.getContext().set_options(SSL.OP_NO_SSLv2 | SSL.OP_NO_SSLv3) To these three: ctx = options.getContext() ctx.se...
by tolaris
Sun May 20, 2018 7:25 am
Forum: Support
Topic: deluge doesnt send intermediate ssl certificate for webui (still?)
Replies: 3
Views: 3768

Re: deluge doesnt send intermediate ssl certificate for webui (still?)

The patch has not been applied to the Deluge PPA for Ubuntu xenial. :( Patch details: https://github.com/deluge-torrent/deluge/pull/161/commits/06dfeed7505dc84daa90cd8dbaf468bf6d50ea9e On my system, /usr/lib/python2.7/dist-packages/deluge/ui/web/server.py shows this on line 690: options.getContext()...