1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/n8n_ynh.git synced 2024-09-03 19:55:52 +02:00
n8n_ynh/conf/.env

31 lines
898 B
Bash
Raw Normal View History

2021-09-18 14:27:12 +02:00
# 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
2021-09-18 22:42:46 +02:00
GENERIC_TIMEZONE=__TIMEZONE__
2021-09-18 14:27:12 +02:00
# 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__