Skip to content

Commit

Permalink
Bump version and improve escaping documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ostefano committed Jun 26, 2024
1 parent 1fd8070 commit ab79ea2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions template.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Build-time variables
##

CORE_TAG=v2.4.193
MODULES_TAG=v2.4.193
CORE_TAG=v2.4.194
MODULES_TAG=v2.4.194
PHP_VER=20190902
LIBFAUP_COMMIT=3a26d0a

Expand Down Expand Up @@ -106,14 +106,16 @@ SYNCSERVERS_1_KEY=
# OIDC_DEFAULT_ORG=

# Enable LDAP (using the ApacheSecureAuth component) authentication, according to https://github.com/MISP/MISP/issues/6189
# NOTE: Once you enable LDAP authentication with the ApacheSecureAuth component, users should not be able to control the HTTP header configured in LDAP_APACHE_ENV (e.g. REMOTE_USER).
# This means you must not allow direct access to MISP.
# NOTE: Once you enable LDAP authentication with the ApacheSecureAuth component,
# users should not be able to control the HTTP header configured in LDAP_APACHE_ENV
# (e.g. REMOTE_USER), this means you must not allow direct access to MISP.
# NOTE 2: You need to escape special characters twice, e.g., "pass\word" becomes "pass\\\\word".
# LDAP_ENABLE=true
# LDAP_APACHE_ENV="REMOTE_USER"
# LDAP_SERVER="ldap://your_domain_controller"
# LDAP_STARTTLS=true
# LDAP_READER_USER="CN=service_account_name,OU=Users,DC=domain,DC=net"
# LDAP_READER_PASSWORD="password" # Doubly escape necessary special characters inside the password. E.g. literal "pass\word" should be escaped as "pass\\\\word"
# LDAP_READER_PASSWORD="password"
# LDAP_DN="OU=Users,DC=domain,DC=net"
# LDAP_SEARCH_FILTER=""
# LDAP_SEARCH_ATTRIBUTE="uid"
Expand Down

0 comments on commit ab79ea2

Please sign in to comment.