2021-09-18 14:27:12 +02:00
|
|
|
# Folder where data should be saved
|
2021-09-19 16:42:01 +02:00
|
|
|
N8N_USER_FOLDER=__DATADIR__
|
2021-09-18 14:27:12 +02:00
|
|
|
|
2021-09-19 15:47:52 +02:00
|
|
|
# Authentication - IMPORTANT ALWAYS CHANGE!
|
|
|
|
N8N_BASIC_AUTH_ACTIVE=true
|
2021-09-18 14:27:12 +02:00
|
|
|
N8N_BASIC_AUTH_USER=__ADMIN__
|
|
|
|
N8N_BASIC_AUTH_PASSWORD=__PASSWORD__
|
|
|
|
|
2021-09-19 16:19:48 +02:00
|
|
|
# The path n8n is deployed to.
|
|
|
|
N8N_PATH=__PATH__/
|
|
|
|
|
2021-12-10 21:39:10 +01:00
|
|
|
# Actual public address, especially useful for external tools connecting to n8n
|
|
|
|
WEBHOOK_URL=https://__DOMAIN____PATH__
|
|
|
|
|
2021-09-18 14:27:12 +02:00
|
|
|
# Optional timezone to set which gets used by Cron-Node by default
|
|
|
|
# If not set New York time will be used
|
2021-09-18 22:42:46 +02:00
|
|
|
GENERIC_TIMEZONE=__TIMEZONE__
|
2021-09-18 14:27:12 +02:00
|
|
|
|
2021-09-19 16:41:44 +02:00
|
|
|
# Use http (we're behind a reverse-proxy)
|
|
|
|
N8N_PROTOCOL=http
|
|
|
|
N8N_LISTEN_ADDRESS=127.0.0.1
|
2021-09-18 14:27:12 +02:00
|
|
|
|
|
|
|
DB_MYSQLDB_DATABASE=__DB_NAME__
|
|
|
|
DB_MYSQLDB_HOST_FILE=localhost
|
|
|
|
DB_MYSQLDB_PORT_FILE=3306
|
|
|
|
DB_MYSQLDB_USER_FILE=__DB_NAME__
|
|
|
|
DB_MYSQLDB_PASSWORD_FILE=__DB_PWD__
|