mirror of
https://github.com/valitydev/docker-misp.git
synced 2024-11-06 08:45:18 +00:00
Merge branch 'master' of github.com:coolacid/docker-misp
This commit is contained in:
commit
9d88c4a8b0
@ -49,6 +49,7 @@ services:
|
||||
# - "NOREDIR=true" # Do not redirect port 80
|
||||
# - "DISIPV6=true" # Disable IPV6 in nginx
|
||||
# - "SECURESSL=true" # Enable higher security SSL in nginx
|
||||
# - "MISP_MODULES_FQDN=http://misp-modules" # Set the MISP Modules FQDN, used for Enrichment_services_url/Import_services_url/Export_services_url
|
||||
misp-modules:
|
||||
image: coolacid/misp-docker:modules-latest
|
||||
environment:
|
||||
|
@ -7,6 +7,7 @@ MISP_APP_CONFIG_PATH=/var/www/MISP/app/Config
|
||||
[ -z "$MYSQL_PASSWORD" ] && MYSQL_PASSWORD=example
|
||||
[ -z "$MYSQL_DATABASE" ] && MYSQL_DATABASE=misp
|
||||
[ -z "$REDIS_FQDN" ] && REDIS_FQDN=redis
|
||||
[ -z "$MISP_MODULES_FQDN" ] && MISP_MODULES_FQDN="http://misp-modules"
|
||||
[ -z "$MYSQLCMD" ] && MYSQLCMD="mysql -u $MYSQL_USER -p$MYSQL_PASSWORD -P $MYSQL_PORT -h $MYSQL_HOST -r -N $MYSQL_DATABASE"
|
||||
|
||||
ENTRYPOINT_PID_FILE="/entrypoint_apache.install"
|
||||
@ -39,13 +40,13 @@ init_misp_config(){
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.ZeroMQ_enable" true
|
||||
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Enrichment_services_enable" true
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Enrichment_services_url" "http://misp-modules"
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Enrichment_services_url" "$MISP_MODULES_FQDN"
|
||||
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Import_services_enable" true
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Import_services_url" "http://misp-modules"
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Import_services_url" "$MISP_MODULES_FQDN"
|
||||
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Export_services_enable" true
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Export_services_url" "http://misp-modules"
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Export_services_url" "$MISP_MODULES_FQDN"
|
||||
|
||||
/var/www/MISP/app/Console/cake Admin setSetting "Plugin.Cortex_services_enable" false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user