mirror of https://github.com/MISP/misp-docker
Add support for encryption key (#108)
parent
eaba308269
commit
a8ea7e0923
|
@ -104,10 +104,6 @@
|
|||
"Security.check_sec_fetch_site_header": {
|
||||
"default_value": true
|
||||
},
|
||||
"Security.encryption_key": {
|
||||
"default_value": "",
|
||||
"command_args": "-f"
|
||||
},
|
||||
"Security.username_in_response_header": {
|
||||
"default_value": true
|
||||
},
|
||||
|
|
|
@ -26,5 +26,9 @@
|
|||
},
|
||||
"Plugin.Export_services_url": {
|
||||
"default_value": "${MISP_MODULES_FQDN}"
|
||||
},
|
||||
"Security.encryption_key": {
|
||||
"default_value": "${ENCRYPTION_KEY}",
|
||||
"command_args": "-f"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -89,6 +89,7 @@ services:
|
|||
- "DISABLE_IPV6=${DISABLE_IPV6}"
|
||||
- "DISABLE_SSL_REDIRECT=${DISABLE_SSL_REDIRECT}"
|
||||
- "ENABLE_DB_SETTINGS=${ENABLE_DB_SETTINGS}"
|
||||
- "ENCRYPTION_KEY=${ENCRYPTION_KEY}"
|
||||
# standard settings
|
||||
- "ADMIN_EMAIL=${ADMIN_EMAIL}"
|
||||
- "ADMIN_PASSWORD=${ADMIN_PASSWORD}"
|
||||
|
|
|
@ -44,6 +44,8 @@ CRON_USER_ID=
|
|||
BASE_URL=
|
||||
# store settings in db except those that must stay in config.php. true/false, defaults to false
|
||||
ENABLE_DB_SETTINGS=
|
||||
# encryption key. defaults to empty string
|
||||
ENCRYPTION_KEY=
|
||||
|
||||
# defines the FQDN of the mail sub-system (defaults to 'mail')
|
||||
# SMTP_FQDN=
|
||||
|
|
Loading…
Reference in New Issue