# Folder where data should be saved DATA_FOLDER=__DATADIR__/ # The top level domain to serve from DOMAIN_NAME=__DOMAIN__ # The subdomain to serve from SUBDOMAIN=__PATH__ # DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from # above example would result in: https://n8n.example.com # The user name to use for authentication - IMPORTANT ALWAYS CHANGE! N8N_BASIC_AUTH_USER=__ADMIN__ # The password to use for authentication - IMPORTANT ALWAYS CHANGE! N8N_BASIC_AUTH_PASSWORD=__PASSWORD__ # Optional timezone to set which gets used by Cron-Node by default # If not set New York time will be used GENERIC_TIMEZONE=__TIMEZONE__ # The email address to use for the SSL certificate creation SSL_EMAIL=user@example.com 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__