16 lines
488 B
Bash
16 lines
488 B
Bash
# The top level domain to serve from
|
|
DOMAIN_NAME=ccalifice.com
|
|
|
|
# The subdomain to serve from
|
|
SUBDOMAIN=n8n
|
|
|
|
# DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
|
|
# above example would result in: https://n8n.example.com
|
|
|
|
# Optional timezone to set which gets used by Cron-Node by default
|
|
# If not set New York time will be used
|
|
GENERIC_TIMEZONE=America/Sao_Paulo
|
|
|
|
# The email address to use for the SSL certificate creation
|
|
SSL_EMAIL=christoph.califice@hotmail.com
|