diff --git a/.env.default b/.env.default index d2657df..3a29319 100644 --- a/.env.default +++ b/.env.default @@ -22,6 +22,7 @@ HOST_WIKIJS=wikijs TZ=Europe/Paris BASIC_AUTH=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/ DELUGE_TORRENT_PORT=6881 +DOWNLOAD_HTTP_PORT=8000 ROOT_INSTALL=/srv DB_ROOT_PASSWORD=rootpassword ADMIN_EMAIL=root@localdomain diff --git a/deluge/docker-compose.deluge.yml b/deluge/docker-compose.deluge.yml index c598260..99f9b65 100644 --- a/deluge/docker-compose.deluge.yml +++ b/deluge/docker-compose.deluge.yml @@ -41,8 +41,9 @@ services: - deluge_downloads:/downloads:ro expose: - 80 + # shortcut to bypass traefik limitation ports: - - 8000:80 + - ${DOWNLOAD_HTTP_PORT}:80 labels: - traefik.enable=true - traefik.http.routers.torrent.rule=Host(`${HOST_WWW}.${DOMAIN}`) && PathPrefix(`${PATH_TORRENT}`)