From 5b004680e932ff1e5e034e44857f4be8054ab06c Mon Sep 17 00:00:00 2001 From: Jean Froment Date: Tue, 14 Mar 2023 21:51:02 +0100 Subject: [PATCH] Remove Traefik pilot token (feature removed) + cleanup .env.sample --- .env.sample | 25 +++++++++++++------------ services/traefik.yaml | 1 - 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.env.sample b/.env.sample index 36da1f2..3438d4a 100644 --- a/.env.sample +++ b/.env.sample @@ -4,13 +4,14 @@ CHECK_FOR_OUTDATED_CONFIG=true # General Traefik (reverse proxy) settings TRAEFIK_DOMAIN=mydomain.com ACME_MAIL=my-email@my-provider.com -PILOT_TOKEN=mytraefiktoken # Keep it empty if not needed # General settings TZ="Europe/Paris" # HTTP Auth HTTP_USER=myuser +# Use this command to generate your password: +# docker run -it --rm --entrypoint htpasswd ubuntu/apache2 -nb your_user your_password | cut -d ":" -f 2 HTTP_PASSWORD='mypassword_encoded' # Keep these simple quotes! # Host paths + containers permissions mapping @@ -22,27 +23,27 @@ PGID=1000 PUID=1000 # Database (for Nextcloud) -MYSQL_ROOT_PASSWORD=h4ckMePleAse889912101 +MYSQL_ROOT_PASSWORD=changeme MYSQL_DATABASE=nextcloud MYSQL_USER=nextcloud -MYSQL_PASSWORD=h4ckMePleAse4256718 +MYSQL_PASSWORD=changeme # Nextcloud -NEXTCLOUD_ADMIN_USER=admin -NEXTCLOUD_ADMIN_PASSWORD=h4ckMePleAse873214668 +NEXTCLOUD_ADMIN_USER=admin # you can change it +NEXTCLOUD_ADMIN_PASSWORD=changme # Portainer -PORTAINER_ADMIN_PASSWORD=h4ckMePleAse +PORTAINER_ADMIN_PASSWORD=changeme -# Flood username declared in deluge rpc daemon -FLOOD_PASSWORD=myfloodpassword +# Flood username declared in deluge RPC daemon +FLOOD_PASSWORD=changeme # Flood Password for Deluge RPC daemon FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false CALIBRE_PASSWORD=mycalibrepassword # Wireguard custom endpoint -WIREGUARD_ENDPOINT= +WIREGUARD_ENDPOINT=changeme # Wireguard endpoint WIREGUARD_PORT=51820 -WIREGUARD_PUBLIC_KEY= -WIREGUARD_PRIVATE_KEY= -WIREGUARD_ADDRESS= \ No newline at end of file +WIREGUARD_PUBLIC_KEY=changeme +WIREGUARD_PRIVATE_KEY=changeme +WIREGUARD_ADDRESS=changeme # Wireguard LAN address \ No newline at end of file diff --git a/services/traefik.yaml b/services/traefik.yaml index f92cb7a..f620e0e 100755 --- a/services/traefik.yaml +++ b/services/traefik.yaml @@ -5,7 +5,6 @@ services: restart: always command: - --certificatesresolvers.le.acme.email=${ACME_MAIL} - - --pilot.token=${PILOT_TOKEN} ports: - "80:80" - "443:443"