nkb123

Members
  • Posts

    1
  • Joined

  • Last visited

nkb123's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I'm trying to set up DelugeVPN on Ubuntu 16.04.3 LTS server. I use PIA. I set up the invocation command like so: sudo docker run -d \ > --cap-add=NET_ADMIN \ > -p 8112:8112 \ > -p 8118:8118 \ > -p 58846:58846 \ > -p 58946:58946 \ > --name=delugevpn \ > -v /apps/docker/deluge/data:/data \ > -v /apps/docker/deluge/config:/config \ > -v /etc/localtime:/etc/localtime:ro \ > -e VPN_ENABLED=yes \ > -e VPN_USER=[Username] \ > -e VPN_PASS=[Password] \ > -e VPN_PROV=pia \ > -e VPN_PORT=1198 \ > -e VPN_REMOTE=us-east.privateinternetaccess.com \ > -e VPN_PROTOCOL=udp \ > -e STRICT_PORT_FORWARD=yes \ > -e ENABLE_PRIVOXY=yes \ > -e LAN_NETWORK=192.168.1.0/24 \ > -e NAME_SERVERS=8.8.8.8,8.8.4.4 \ > -e DEBUG=false \ > -e UMASK=000 \ > -e PUID=0 \ > -e PGID=0 \ > binhex/arch-delugevpn However, every time I try to run it, it crashes and the log tells me that an "opevpn configuration file" is missing. Do I need to create some kind of OpenVPN config file before I start the program up? Thanks!