secure cookie must be a string.

This commit is contained in:
Andrea Dell'Amico 2023-11-02 10:40:26 +01:00
parent decc23bc44
commit 3699337235
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 3 additions and 3 deletions

View File

@ -29,8 +29,8 @@ bluecloud_webodv_reverse_proxy: 0
bluecloud_webodv_scheme: http
# Public endpoint. Mandatory when https
bluecloud_webodv_root_url: ""
# Secure cookie. True when https
bluecloud_webodv_session_secure_cookie: false
# Secure cookie. true when https
bluecloud_webodv_session_secure_cookie: "false"
# Set to "none" when behind a reverse proxy
bluecloud_webodv_same_site: ""
bluecloud_webodv_client_url: "localhost"

View File

@ -128,7 +128,7 @@ services:
REVERSE_PROXY: {{ bluecloud_webodv_reverse_proxy }}
FORCE_SCHEME: {{ bluecloud_webodv_scheme }}
FORCE_ROOT_URL: {{ bluecloud_webodv_root_url }}
SESSION_SECURE_COOKIE: {{ bluecloud_webodv_session_secure_cookie }}
SESSION_SECURE_COOKIE: "{{ bluecloud_webodv_session_secure_cookie }}"
SAME_SITE: {{ bluecloud_webodv_same_site }}
MAIL_PASSWORD: {{ bluecloud_webodv_smtp_password }}
DB_PASSWORD: {{ bluecloud_webodv_mysql_password }}