mirror of
https://github.com/opf/openproject-deploy.git
synced 2026-02-14 16:59:51 +00:00
add posibility to configure SECRET_KEY_BASE (#121)
This commit is contained in:
@@ -8,6 +8,11 @@
|
||||
#
|
||||
TAG=17-slim
|
||||
OPENPROJECT_HTTPS=false
|
||||
# Please override the SECRET_KEY_BASE
|
||||
# Please use a pseudo-random value for this and treat it like a password.
|
||||
# If you are on Linux you can generate a scret key with the following command
|
||||
# head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32 ; echo ''
|
||||
SECRET_KEY_BASE=OVERWRITE_ME
|
||||
OPENPROJECT_HOST__NAME=localhost
|
||||
PORT=127.0.0.1:8080
|
||||
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
|
||||
|
||||
@@ -26,6 +26,7 @@ x-op-app: &app
|
||||
RAILS_MAX_THREADS: ${RAILS_MAX_THREADS:-16}
|
||||
# set to true to enable the email receiving feature. See ./docker/cron for more options
|
||||
IMAP_ENABLED: "${IMAP_ENABLED:-false}"
|
||||
SECRET_KEY_BASE: "${SECRET_KEY_BASE:-OVERWRITE_ME}"
|
||||
volumes:
|
||||
- "${OPDATA:-opdata}:/var/openproject/assets"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user