Search found 22 matches

by boredazfcuk
Thu Jul 08, 2021 3:48 pm
Forum: Support
Topic: Configuring LetsEncrypt for deluge-web
Replies: 7
Views: 10712

Re: Configuring LetsEncrypt for deluge-web

Yeah that's what I started out from, but my nginx container does a bunch of other things you'll probably want to look into as well...

Such as configuring stuff like LetsEncrypt for encryption and GeoIP blocking, so people form around the world can't connect to your web front end.
by boredazfcuk
Wed Jul 07, 2021 5:10 pm
Forum: Support
Topic: Configuring LetsEncrypt for deluge-web
Replies: 7
Views: 10712

Re: Configuring LetsEncrypt for deluge-web

No worries. I publish all my containers on Dockerhub and the code is on GitHub: This is my nginx container: https://github.com/boredazfcuk/docker-nginx This is my LetsEncrypt container: https://github.com/boredazfcuk/docker-letsencrypt This is my GeoIP container: https://github.com/boredazfcuk/docke...
by boredazfcuk
Sat Jan 04, 2020 1:04 am
Forum: Support
Topic: Install and run two versions concurrently
Replies: 6
Views: 2885

Re: Install and run two versions concurrently

gderf, got a docker image that runs the latest stable version of deluge, even as it updates? My docker container is probably up to the job, but may need a couple of tweaks: https://hub.docker.com/r/boredazfcuk/deluge I run this as part of a stack with a lot of other components, so have just put thi...
by boredazfcuk
Thu Nov 28, 2019 12:10 pm
Forum: Support
Topic: Network Settings "Interface"? Error
Replies: 4
Views: 3908

Re: Network Settings "Interface"? Error

I call a script to get a forwarded port from my VPN
Quick one, can I have a nosey at this script?

I want to do the same but haven't looked into it yet and it could save me a fair bit of time.
by boredazfcuk
Thu Nov 28, 2019 10:45 am
Forum: Support
Topic: Enable plugins via command line?
Replies: 2
Views: 2985

Re: Enable plugins via command line?

Perfect. I now enable my preferred plugins by running: /usr/bin/deluge-console -U localclient -P "$(grep ^localclient ${CONFIGDIR}/auth | cut -d: -f2)" plugin --enable AutoAdd Blocklist Execute Label Scheduler in my docker container's start-up script so I don't have to re-enable them every...
by boredazfcuk
Thu Nov 28, 2019 1:13 am
Forum: Support
Topic: Enable plugins via command line?
Replies: 2
Views: 2985

Enable plugins via command line?

Hey, everyone. Is it possible to install and enable plugins from the command line? I have added the plugins I want to enabled_plugins in web.conf and then fired up deluged and deluge-web, but when I look at the webui's plugin configuration, they are not checked. If I check the box manually, a folder...
by boredazfcuk
Thu Nov 28, 2019 1:07 am
Forum: Support
Topic: Network Settings "Interface"? Error
Replies: 4
Views: 3908

Re: Network Settings "Interface"? Error

Why do you need the IP of your VPN adapter? Is it not sufficient to restrict the traffic to tun? It is as you said, my default policy is drop with exceptions for tun and local traffic (the XXX.XXX.XXX.0 entry below). These tables are persistent so I don't need to make any changes on reboot. After t...
by boredazfcuk
Mon Oct 28, 2019 11:29 pm
Forum: Support
Topic: Network Settings "Interface"? Error
Replies: 4
Views: 3908

Re: Network Settings "Interface"? Error

I have iptables in place to prevent any traffic circumventing the vpn tunnel. I'm gonna guess you've configured a default policy to block all outgoing traffic that doesn't have a matching iptables rule? If you have, do your iptables rules allow Deluge's outbound traffic to go out via the tun0 devic...
by boredazfcuk
Tue Oct 22, 2019 3:57 pm
Forum: Support
Topic: Connect thin client to deamon under Deluge V2 and nginx reverse proxy
Replies: 2
Views: 1863

Re: Connect thin client to deamon under Deluge V2 and nginx reverse proxy

You would need to expose your server's daemon port to the Internet and allow remote connections. That would be a bad idea. You'd be best off just using the web interface and installing a browser extension to allow you to send links to that. If you use Firefox, then something like this should work: h...
by boredazfcuk
Tue Oct 22, 2019 3:50 pm
Forum: Support
Topic: Configuring LetsEncrypt for deluge-web
Replies: 7
Views: 10712

Re: Configuring LetsEncrypt for deluge-web

I have accomplished what your end goal is, however, I've gone about it in an entirely different manner. I have setup nginx on my server (Debian 10) and configured it to use the LetsEncrypt certificate. There is an nginx plugin for certbot which will automate your certificate renewals. The nginx serv...