41 lines
807 B
Bash
41 lines
807 B
Bash
# envs
|
|
# create a docker network with:
|
|
# docker network create nginx_network
|
|
|
|
### Domain Configs..
|
|
domain=example.com
|
|
domain_subdomains=homeassistant,plex,nodered,jellyfin,sonarr,radarr
|
|
user_email=example@gmail.com
|
|
|
|
### NGINX Validation
|
|
nginx_validation=dns
|
|
nginx_dnsplugin=cloudflare
|
|
#nginx_duckdnstoken=
|
|
|
|
### Container Names
|
|
nginx_container_name=nginx
|
|
authelia_container_name=authelia
|
|
|
|
### Other Configs..
|
|
PUID=1000
|
|
PGID=1000
|
|
TZ=Europe/Amsterdam
|
|
rst_mode=unless-stopped
|
|
maximunddb_license_key=
|
|
|
|
### Volumes
|
|
# create the folders manually
|
|
volume_nginx=/docker/nginx/nginx
|
|
volume_authelia=/docker/nginx/authelia
|
|
|
|
### AutoUpdate (WatchTower)
|
|
autoupdate_nginx=true
|
|
autoupdate_authelia=true
|
|
|
|
### Docker Containers TAGs
|
|
tag_nginx=latest
|
|
tag_authelia=latest
|
|
|
|
### NGINX Ports
|
|
nginx_httpsPort=443
|
|
nginx_httpPort=80 |