Remove Traefik pilot token (feature removed) + cleanup .env.sample
This commit is contained in:
parent
d757884251
commit
5b004680e9
25
.env.sample
25
.env.sample
|
@ -4,13 +4,14 @@ CHECK_FOR_OUTDATED_CONFIG=true
|
||||||
# General Traefik (reverse proxy) settings
|
# General Traefik (reverse proxy) settings
|
||||||
TRAEFIK_DOMAIN=mydomain.com
|
TRAEFIK_DOMAIN=mydomain.com
|
||||||
ACME_MAIL=my-email@my-provider.com
|
ACME_MAIL=my-email@my-provider.com
|
||||||
PILOT_TOKEN=mytraefiktoken # Keep it empty if not needed
|
|
||||||
|
|
||||||
# General settings
|
# General settings
|
||||||
TZ="Europe/Paris"
|
TZ="Europe/Paris"
|
||||||
|
|
||||||
# HTTP Auth
|
# HTTP Auth
|
||||||
HTTP_USER=myuser
|
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!
|
HTTP_PASSWORD='mypassword_encoded' # Keep these simple quotes!
|
||||||
|
|
||||||
# Host paths + containers permissions mapping
|
# Host paths + containers permissions mapping
|
||||||
|
@ -22,27 +23,27 @@ PGID=1000
|
||||||
PUID=1000
|
PUID=1000
|
||||||
|
|
||||||
# Database (for Nextcloud)
|
# Database (for Nextcloud)
|
||||||
MYSQL_ROOT_PASSWORD=h4ckMePleAse889912101
|
MYSQL_ROOT_PASSWORD=changeme
|
||||||
MYSQL_DATABASE=nextcloud
|
MYSQL_DATABASE=nextcloud
|
||||||
MYSQL_USER=nextcloud
|
MYSQL_USER=nextcloud
|
||||||
MYSQL_PASSWORD=h4ckMePleAse4256718
|
MYSQL_PASSWORD=changeme
|
||||||
|
|
||||||
# Nextcloud
|
# Nextcloud
|
||||||
NEXTCLOUD_ADMIN_USER=admin
|
NEXTCLOUD_ADMIN_USER=admin # you can change it
|
||||||
NEXTCLOUD_ADMIN_PASSWORD=h4ckMePleAse873214668
|
NEXTCLOUD_ADMIN_PASSWORD=changme
|
||||||
|
|
||||||
# Portainer
|
# Portainer
|
||||||
PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
PORTAINER_ADMIN_PASSWORD=changeme
|
||||||
|
|
||||||
# Flood username declared in deluge rpc daemon
|
# Flood username declared in deluge RPC daemon
|
||||||
FLOOD_PASSWORD=myfloodpassword
|
FLOOD_PASSWORD=changeme # Flood Password for Deluge RPC daemon
|
||||||
FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false
|
FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false
|
||||||
|
|
||||||
CALIBRE_PASSWORD=mycalibrepassword
|
CALIBRE_PASSWORD=mycalibrepassword
|
||||||
|
|
||||||
# Wireguard custom endpoint
|
# Wireguard custom endpoint
|
||||||
WIREGUARD_ENDPOINT=<ENDPOINT>
|
WIREGUARD_ENDPOINT=changeme # Wireguard endpoint
|
||||||
WIREGUARD_PORT=51820
|
WIREGUARD_PORT=51820
|
||||||
WIREGUARD_PUBLIC_KEY=<WIREGUARD_PUBLIC_KEY>
|
WIREGUARD_PUBLIC_KEY=changeme
|
||||||
WIREGUARD_PRIVATE_KEY=<WIREGUARD_PRIVATE_KEY>
|
WIREGUARD_PRIVATE_KEY=changeme
|
||||||
WIREGUARD_ADDRESS=<WIREGUARD_LAN_ADDRESS>
|
WIREGUARD_ADDRESS=changeme # Wireguard LAN address
|
|
@ -5,7 +5,6 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
command:
|
command:
|
||||||
- --certificatesresolvers.le.acme.email=${ACME_MAIL}
|
- --certificatesresolvers.le.acme.email=${ACME_MAIL}
|
||||||
- --pilot.token=${PILOT_TOKEN}
|
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
|
|
Loading…
Reference in New Issue