-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added missing PROXY_ENABLE envar to docker-compose.yml
add default value of false is PROXY_ENABLE unset altered set_up_proxy() in configure_misp.sh to use json-based config system fixed MISP.ca_path setting to use --force, since doesn't end in .pem
- Loading branch information
UFOSmuggler
committed
Jun 11, 2024
1 parent
da3e3ae
commit 9ee10df
Showing
4 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"Proxy.host": { | ||
"default_value": "${PROXY_HOST}" | ||
}, | ||
"Proxy.port": { | ||
"default_value": "${PROXY_PORT}" | ||
}, | ||
"Proxy.method": { | ||
"default_value": "${PROXY_METHOD}" | ||
}, | ||
"Proxy.user": { | ||
"default_value": "${PROXY_USER}" | ||
}, | ||
"Proxy.password": { | ||
"default_value": "${PROXY_PASSWORD}" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters