Hi does anyone can help me on how to configure my AWS EKS n8n to access it via http only. here’s what i got in when accessing it.
Currently what i did:
I created a n8n-secrets.yaml containing the following:
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: n8n-secrets
namespace: n8n
labels:
app: n8n
component: secrets
stringData:
N8N_SECURE_COOKIE: “false”
Then I tried to apply the n8n-secrets, I still got same message above (see the web-browser’s screenshot).
Thank you
n8n
2
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
I already resolved this by adding N8N_SECURE_COOKIE set to false in n8n-deployment.yaml under env:
env:
…
- name: N8N_SECURE_COOKIE
value: “false”
1 Like
system
Closed
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.