sebigeli

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by sebigeli

  1. Hello,
    I am using Deluge VPN in Docker. It is configured to be connected to my CyberGhost VPN via OpenVPN with UDP. I don't know if my configuration is correct but here my Deluge doesn't want to download anything anymore, it starts at 50 kbps and ends at 0. I even tested with an official ubuntu torrent and I have 0 kbps. I just created a new deleted VPN account and recomposed my container and I have the same problem. I tested OpenVPN on my PC (Windows) and tried downloading the same torrent and it works fine.

     

    Here my configuration on my docker-compose.yml :

     

      deluge:
        image: binhex/arch-delugevpn:latest
        container_name: deluge
        restart: unless-stopped
        networks:
          - ${NETWORK}
        cap_add:
          - NET_ADMIN
        ports:
          - 8112:8112
          - 8118:8118
          - 58846:58846
          - 58946:58946
        environment:
          - PUID=${PUID}
          - PGID=${PGID}
          - TZ=Europe/Paris
          - VPN_ENABLED=true
          - VPN_PROV=CUSTOM
          - VPN_USER=${VPN_USER}
          - VPN_PASS=${VPN_PASS}
          - STRICT_PORT_FORWARD=yes
          - ENABLE_PRIVOXY=yes
          - LAN_NETWORK=${LAN_NETWORK}
          - 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
          - UMASK=000
          - DEBUG=true

     

    Thank !