[variables] main_domain = "${domain}" # Variables PostgreSQL postgres_user = "${username}" postgres_password = "${password:24}" postgres_db = "n8n" # SÉCURITÉ - Clé d'encryption (IMPORTANT) n8n_encryption_key = "${base64:64}" [config] mounts = [] [[config.domains]] serviceName = "n8n" port = 5_678 host = "${main_domain}" [config.env] N8N_HOST = "${main_domain}" N8N_PORT = "5678" GENERIC_TIMEZONE = "Europe/Berlin" # Variables PostgreSQL POSTGRES_USER = "${postgres_user}" POSTGRES_PASSWORD = "${postgres_password}" POSTGRES_DB = "${postgres_db}" # SÉCURITÉ - Encryption (IMPORTANT) N8N_ENCRYPTION_KEY = "${n8n_encryption_key}"