secure cookie must be a string.
This commit is contained in:
parent
decc23bc44
commit
3699337235
|
@ -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"
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue