You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So i spun up a completely fresh bare-metal install of ubuntu-server to set up this docker environment.
First i stumbled across the documentaion error when it said we should set up deluge with vpn but there was no VPN at this point.
So i went ahead and wanted to installed the vpn first. I aswell use PIA and i just did exactly what you said but all i get in the logs is:
Mon Mar 13 14:50:37 2023 SIGUSR1[soft,init_instance] received, process restarting
Mon Mar 13 14:51:17 2023 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
Mon Mar 13 14:51:17 2023 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1198 (Name does not resolve)
Mon Mar 13 14:51:18 2023 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1198 (Name does not resolve)
Mon Mar 13 14:51:18 2023 Could not determine IPv4/IPv6 protocol
Mon Mar 13 14:51:18 2023 SIGUSR1[soft,init_instance] received, process restarting
This is my docker-compose file for OpenVPN:
version: "3"
services:
vpn:
container_name: vpn
image: dperson/openvpn-client:latest
cap_add:
- net_admin # required to modify network interfaces
restart: unless-stopped
volumes:
- /dev/net:/dev/net:z # tun device
- ${ROOT}/config/vpn:/vpn # OpenVPN configuration
security_opt:
- label:disable
ports:
- 8112:8112 # port for deluge web UI to be reachable from local network
command: "-r 192.168.178.1/24" # route local network traffic
The text was updated successfully, but these errors were encountered:
So i spun up a completely fresh bare-metal install of ubuntu-server to set up this docker environment.
First i stumbled across the documentaion error when it said we should set up deluge with vpn but there was no VPN at this point.
So i went ahead and wanted to installed the vpn first. I aswell use PIA and i just did exactly what you said but all i get in the logs is:
Mon Mar 13 14:50:37 2023 SIGUSR1[soft,init_instance] received, process restarting
Mon Mar 13 14:51:17 2023 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
Mon Mar 13 14:51:17 2023 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1198 (Name does not resolve)
Mon Mar 13 14:51:18 2023 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1198 (Name does not resolve)
Mon Mar 13 14:51:18 2023 Could not determine IPv4/IPv6 protocol
Mon Mar 13 14:51:18 2023 SIGUSR1[soft,init_instance] received, process restarting
This is my docker-compose file for OpenVPN:
version: "3"
services:
vpn:
container_name: vpn
image: dperson/openvpn-client:latest
cap_add:
- net_admin # required to modify network interfaces
restart: unless-stopped
volumes:
- /dev/net:/dev/net:z # tun device
- ${ROOT}/config/vpn:/vpn # OpenVPN configuration
security_opt:
- label:disable
ports:
- 8112:8112 # port for deluge web UI to be reachable from local network
command: "-r 192.168.178.1/24" # route local network traffic
The text was updated successfully, but these errors were encountered: