fix: set N8N_SECURE_COOKIE to false in docker-compose files for n8n service

This commit is contained in:
Lago
2026-05-10 01:19:23 +02:00
parent f440f88725
commit b21b3937b2
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -41,6 +41,8 @@ services:
- ./frontend/nginx-admin.conf:/etc/nginx/conf.d/default.conf:ro - ./frontend/nginx-admin.conf:/etc/nginx/conf.d/default.conf:ro
n8n: n8n:
environment:
N8N_SECURE_COOKIE: "false"
volumes: volumes:
- ./data/n8n:/home/node/.n8n - ./data/n8n:/home/node/.n8n
- ./n8n/workflows:/opt/mc-cars/workflows:ro - ./n8n/workflows:/opt/mc-cars/workflows:ro
+1
View File
@@ -390,6 +390,7 @@ services:
WEBHOOK_URL: http://localhost:55590/ WEBHOOK_URL: http://localhost:55590/
N8N_ENCRYPTION_KEY: ${N8N_ENCRYPTION_KEY} N8N_ENCRYPTION_KEY: ${N8N_ENCRYPTION_KEY}
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS: "false" N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS: "false"
N8N_SECURE_COOKIE: "false"
# Database (n8n stores its own data in the same Postgres) # Database (n8n stores its own data in the same Postgres)
DB_TYPE: postgresdb DB_TYPE: postgresdb