2023-12-24 18:54:49 +00:00
|
|
|
# DOMAIN_ROOT is the root domain that this service will register as with Traefik
|
|
|
|
DOMAIN_ROOT=domain.tld
|
|
|
|
|
|
|
|
# USER_ID is the user id to run the service as. 0 for root
|
|
|
|
USER_ID=1000
|
|
|
|
|
|
|
|
# GROUP_ID is the group id to run the service as. 0 for root
|
|
|
|
GROUP_ID=1000
|
|
|
|
|
|
|
|
# TIMEZONE is the timezone the server is in
|
2023-12-25 21:08:55 +00:00
|
|
|
TIMEZONE=America/New_York
|
2023-12-24 18:54:49 +00:00
|
|
|
|
|
|
|
# CLOUDFLARE_EMAIL is the email for the cloudflare credentials
|
|
|
|
CLOUDFLARE_EMAIL=email@address.com
|
|
|
|
|
|
|
|
# CLOUDFLARE_KEY is the key for your cloudflare credentials
|
|
|
|
CLOUDFLARE_KEY=XXXX
|
|
|
|
|
|
|
|
# AUTH_JWT_SECRET is the secret used for authelia's json web tokens. (can just be a random string)
|
|
|
|
AUTH_JWT_SECRET=SOMErandomSTRING
|
|
|
|
|
|
|
|
# AUTH_SESSION_SECRET is the secret (random string) used to encrypt session data in redis
|
|
|
|
AUTH_SESSION_SECRET=SOMEotherRANDOMstring
|
|
|
|
|
|
|
|
# AUTH_STORAGE_KEY is the secret (random string) used to encrypt the data at rest
|
|
|
|
AUTH_STORAGE_KEY=ANOTHERrandomSTRING
|