From 6d38a3eee34fb851458563a4ffef7aa7512667f0 Mon Sep 17 00:00:00 2001 From: erik Date: Tue, 22 Aug 2023 14:05:40 +0200 Subject: [PATCH] Add session cookie settings --- src/main/resources/taiga/donotapply/changes-made.md | 3 ++- src/main/resources/taiga/taiga-configmap.yaml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/resources/taiga/donotapply/changes-made.md b/src/main/resources/taiga/donotapply/changes-made.md index 96d0f2b..1731d61 100644 --- a/src/main/resources/taiga/donotapply/changes-made.md +++ b/src/main/resources/taiga/donotapply/changes-made.md @@ -30,4 +30,5 @@ Get RABBITMQ_DEFAULT_VHOST from taiga-configmap in taiga-events-rabbitmq-deploym Get RABBITMQ_DEFAULT_VHOST from taiga-configmap in taiga-async-rabbitmq-deployment Move all values from taiga-rabbitmq-secret to taiga-secret Remove taiga-rabbitmq-secret from config -Rename all occurrences of taiga-rabbitmq-secret to taiga-secret \ No newline at end of file +Rename all occurrences of taiga-rabbitmq-secret to taiga-secret +Add SESSION_COOKIE_SECURE: "False" and CSRF_COOKIE_SECURE: "False" to taiga-configmap.yaml \ No newline at end of file diff --git a/src/main/resources/taiga/taiga-configmap.yaml b/src/main/resources/taiga/taiga-configmap.yaml index 32a9cf9..171a832 100644 --- a/src/main/resources/taiga/taiga-configmap.yaml +++ b/src/main/resources/taiga/taiga-configmap.yaml @@ -47,3 +47,6 @@ data: # Rabbitmq settings RABBITMQ_DEFAULT_VHOST: taiga + + SESSION_COOKIE_SECURE: "False" + CSRF_COOKIE_SECURE: "False"