Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ For Okta, create a new application integration:
OIDC_AUTH_METHOD="client_secret_post"
OIDC_REDIRECT_URI="https://<MISP_URL>/users/login" # (same value set in Okta)
OIDC_DISABLE_REQUEST_OBJECT=false
OIDC_SKIP_PROXY=true
```
Valid options for OIDC_AUTH_METHOD are:
- client_secret_post: tested
Expand Down
3 changes: 2 additions & 1 deletion core/files/configure_misp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ set_up_oidc() {
\"mixedAuth\": ${OIDC_MIXEDAUTH},
\"authentication_method\": \"${OIDC_AUTH_METHOD}\",
\"redirect_uri\": \"${OIDC_REDIRECT_URI}\",
\"disable_request_object\": \"${OIDC_DISABLE_REQUEST_OBJECT}\"
\"disable_request_object\": \"${OIDC_DISABLE_REQUEST_OBJECT}\",
\"skipProxy\": ${OIDC_SKIP_PROXY}
}
}" > /dev/null

Expand Down
1 change: 1 addition & 0 deletions core/files/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export AUTOGEN_ADMIN_KEY=${AUTOGEN_ADMIN_KEY:-$AUTOCONF_ADMIN_KEY}
export OIDC_ENABLE=${OIDC_ENABLE:-false}
export OIDC_MIXEDAUTH=${OIDC_MIXEDAUTH:-false}
export OIDC_DISABLE_REQUEST_OBJECT=${OIDC_DISABLE_REQUEST_OBJECT:-false}
export OIDC_SKIP_PROXY=${OIDC_SKIP_PROXY:-true}
export LDAP_ENABLE=${LDAP_ENABLE:-false}
export ENABLE_DB_SETTINGS=${ENABLE_DB_SETTINGS:-false}
export ENABLE_BACKGROUND_UPDATES=${ENABLE_BACKGROUND_UPDATES:-false}
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ services:
- "OIDC_SCOPES=${OIDC_SCOPES}"
- "OIDC_LOGOUT_URL=${OIDC_LOGOUT_URL}"
- "OIDC_DISABLE_REQUEST_OBJECT=${OIDC_DISABLE_REQUEST_OBJECT}"
- "OIDC_SKIP_PROXY=${OIDC_SKIP_PROXY}"
# APACHESECUREAUTH authentication settings
- "APACHESECUREAUTH_LDAP_OLD_VAR_DETECT=${LDAP_ENABLE}"
- "APACHESECUREAUTH_LDAP_ENABLE=${APACHESECUREAUTH_LDAP_ENABLE:-${LDAP_ENABLE}}"
Expand Down
1 change: 1 addition & 0 deletions template.env
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ SYNCSERVERS_1_PULL_RULES=
# OIDC_SCOPES="[\"profile\", \"email\"]"
# OIDC_LOGOUT_URL=
# OIDC_DISABLE_REQUEST_OBJECT=false
# OIDC_SKIP_PROXY=true

# 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,
Expand Down