Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ services:
#- QUEUE_CONNECTION=sync
#- SECURITY_HEADER_HSTS_ENABLE=false
#- SECURITY_HEADER_CSP_CONNECT_SRC=
#- SECURITY_HEADER_CSP_FRAME_ANCESTORS=
#- SECURITY_HEADER_SCRIPT_SRC_ALLOW=
#- SESSION_SECURE_COOKIE=false
#- MAIL_DRIVER=smtp
Expand Down
3 changes: 3 additions & 0 deletions inject.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ if [ "$SECURITY_HEADER_CSP_CONNECT_SRC" != '' ]; then
if [ "$SECURITY_HEADER_SCRIPT_SRC_ALLOW" != '' ]; then
replace_or_insert "SECURITY_HEADER_SCRIPT_SRC_ALLOW" "$SECURITY_HEADER_SCRIPT_SRC_ALLOW"
fi
if [ "$SECURITY_HEADER_CSP_FRAME_ANCESTORS" != '' ]; then
replace_or_insert "SECURITY_HEADER_CSP_FRAME_ANCESTORS" "$SECURITY_HEADER_CSP_FRAME_ANCESTORS"
fi
if [ "$SESSION_SECURE_COOKIE" != '' ]; then
replace_or_insert "SESSION_SECURE_COOKIE" "$SESSION_SECURE_COOKIE"
fi
Expand Down