diff options
author | Emmanuel Ormancey | 2018-12-12 10:40:24 +0100 |
---|---|---|
committer | Sheogorath | 2019-04-06 17:54:58 +0200 |
commit | df53f465c0238e9a6a306df21cd7e04731056dd6 (patch) | |
tree | bd7ed2541fd1f233ac74b4dbd7953e1bb975c73e /config.json.example | |
parent | 5379d65edc8edfb6135f43e4e021ee2d7907d957 (diff) |
Added a configuration option for passport-saml:
disableRequestedAuthnContext: true|false
By default only Password authmethod is accepted, this option allows any other method.
Issue and option described here:
https://github.com/bergie/passport-saml/issues/226
Signed-off-by: Emmanuel Ormancey <emmanuel.ormancey@cern.ch>
Diffstat (limited to 'config.json.example')
-rw-r--r-- | config.json.example | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.json.example b/config.json.example index cb2bf3a5..d1c1cc5c 100644 --- a/config.json.example +++ b/config.json.example @@ -93,6 +93,7 @@ "idpCert": "change: certificate file path of IdP in PEM format", "issuer": "change or delete: identity of the service provider (default: serverurl)", "identifierFormat": "change or delete: name identifier format (default: 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress')", + "disableRequestedAuthnContext": "change or delete: true to allow any authentication method, false restricts to password authentication method (default: false)", "groupAttribute": "change or delete: attribute name for group list (ex: memberOf)", "requiredGroups": [ "change or delete: group names that allowed" ], "externalGroups": [ "change or delete: group names that not allowed" ], |