SAML
auth:
get_user_by_saml: true
set_auth_cookie: true
force_redirect_to_identity_provider: false
get_user_by_saml_settings:
# On the provider, set ACS url to https://your_consoleme_url/saml/acs and saml audience to "https://your_consoleme_url/"
idp_metadata_url: "https://dev-12345.us.auth0.com/samlp/metadata/abcdefg"
saml_path: example_config/saml_example
attributes:
user: user
groups: groups
email: email
saml_settings:
debug: false
# IDP settings are not necessary if you provided the get_user_by_saml_settings.idp_metadata_url configuration setting
# They are provided here as an example
# idp:
# entityId: https://portal.sso.us-east-1.amazonaws.com/saml/assertion/CUSTOMENDPOINT
# singleLogoutService:
# binding: urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
# url: https://portal.sso.us-east-1.amazonaws.com/saml/logout/CUSTOMENDPOINT
# singleSignOnService:
# binding: urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
# url: https://portal.sso.us-east-1.amazonaws.com/saml/assertion/CUSTOMENDPOINT
# x509cert: MIIDAz.....
sp:
NameIDFormat: urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress
assertionConsumerService:
binding: urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
url: http://localhost:8081/saml/acs
entityId: http://localhost:8081
singleLogoutService:
binding: urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
url: http://localhost:8081/saml/sls
strict: false
support:
emailAddress: support@example.com
givenName: support_name
technical:
emailAddress: technical@example.com
givenName: technical_name
organization:
en-US:
displayname: ConsoleMe
name: ConsoleMe
url: http://localhost:8081
security:
authnRequestsSigned: false
digestAlgorithm: http://www.w3.org/2000/09/xmldsig#sha1
logoutRequestSigned: true
logoutResponseSigned: true
nameIdEncrypted: false
signMetadata: false
signatureAlgorithm: http://www.w3.org/2000/09/xmldsig#rsa-sha1
wantAssertionsEncrypted: false
wantAssertionsSigned: true
wantMessagesSigned: true
wantNameId: true
wantNameIdEncrypted: falseSteps
Important configuration variables
Last updated