binhex / arch-delugevpn

Docker build script for Arch Linux base with Deluge, Privoxy and OpenVPN
GNU General Public License v3.0
700 stars 111 forks source link

Cant acces deluge web ui remotely #175

Open Damness opened 4 years ago

Damness commented 4 years ago

I cant acces the webui remotely.. If i use localhost:8112 it works fine on my server..

but if i try on my home computer is just gives me and error "cant connect to this website"

docker run -d \ --cap-add=NET_ADMIN \ -p 8112:8112 \ -p 8118:8118 \ -p 58846:58846 \ -p 58946:58946 \ --name=prut \ -v /home/docker/deluge/downloads:/data \ -v /home/docker/deluge/config:/config \ -e VPN_ENABLED=yes \ -e VPN_USER= \ -e VPN_PASS= \ -e VPN_PROV=custom \ -e STRICT_PORT_FORWARD=yes \ -e ENABLE_PRIVOXY=yes \ -e LAN_NETWORK= \ -e NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1 \ -e DELUGE_DAEMON_LOG_LEVEL=info \ -e DELUGE_WEB_LOG_LEVEL=info \ -e DEBUG=false \ -e UMASK=000 \ -e PUID=0 \ -e PGID=0 \ binhex/arch-delugevpn

I have deletet ip adresse and vpn login cause im paranoid.. And im a newb at this..

Things i dont understand.. Do i need the /24 after my ip adresse? And what exatcly does the "name _servers" do

mscreations commented 4 years ago

you need to set your LAN_NETWORK to your local network.

If your computers has an IP address like 192.168.1.10 with subnet 255.255.255.0, you'd enter 192.168.1.0/24. If you have questions about what exactly to enter and you don't want to post your internal IP address, look for a CIDR calculator on google. The one at http://www.subnet-calculator.com/cidr.php allows you to add your IP and subnet and then it will give you the CIDR notation to enter.