mjb5038

Members
  • Posts

    2
  • Joined

  • Last visited

mjb5038's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Thank you @binhex @wgstarks. I didn't expect the need to add .opvn from the files unzipped from PIA's website. That worked Now i'm getting strange errors in the log. Can you any provide guidance on this ? Thanks!
  2. Hi all - Probably the easiest question in a while: DelugeVPN via docker-compose cannot find the PIA config file. What am I doing wrong ? No OpenVPN config file located in /config/openvpn/ (ovpn extension), please download from your VPN provider and then restart this container, exiting... My docker-compose.yml: arch-delugevpn: image: binhex/arch-delugevpn container_name: delugevpn restart: unless-stopped network_mode: 'bridge' ports: - '${IP_ADDRESS}:8112:8112' - '${IP_ADDRESS}:8118:8118' - '${IP_ADDRESS}:58846:58846' - '${IP_ADDRESS}:58946:58946' cap_add: - NET_ADMIN env_file: - .env volumes: - '/media/Media/Torrents:/data' - './delugevpn/config:/config' - '/opt/ovpn/pia:/config/openvpn' - '/etc/localtime:/etc/localtime:ro' environment: - VPN_ENABLED=yes - VPN_USER=${VPNUNAME} - VPN_PASS=${VPNPASS} - VPN_REMOTE=${VPN_REMOTE} - VPN_PORT=1198 - VPN_PROTOCOL=udp - VPN_DEVICE_TYPE=tun - VPN_PROV=${VPNPROVIDER} - STRONG_CERTS=no - ENABLE_PRIVOXY=yes - STRICT_PORT_FORWARD=yes - LAN_NETWORK=${CIDR_ADDRESS} - NAME_SERVERS=37.235.1.174,8.8.8.8,37.235.1.177,8.8.4.4 - DEBUG=false - PUID=${PUID} - PGID=${PGID} - VIRTUAL_HOST=deluge.${DOMAIN} - VIRTUAL_PORT=8112 - LETSENCRYPT_HOST=deluge.${DOMAIN} - LETSENCRYPT_EMAIL=${EMAIL} I believe the appropriate files are there: drwxr-xr-x 2 root root 4096 Oct 30 22:17 . drwxrwxr-x 3 admin admin 4096 Oct 30 22:14 .. -rwxr-xr-x 1 root root 2025 Oct 30 22:17 ca.rsa.2048.crt -rwxr-xr-x 1 root root 869 Oct 30 22:17 crl.rsa.2048.pem -rwxr-xr-x 1 root root 3177 Oct 30 22:17 'US East' admin@docker:/opt/delugevpn/config/openvpn$ Matt