Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .docker/config/simplesaml/config/authsources.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,20 @@
*/
'redirect.validate' => filter_var(getenv('SIMPLESAMLPHP_SP_VALIDATE_AUTH'), FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) ?? true,

/*
* Whether assertions received by this SP must be encrypted.
* If set to true, unencrypted assertions will be rejected.
* This option can be overridden for a specific IdP in saml20-idp-remote.
*/
'assertion.encryption' => filter_var(getenv('SIMPLESAMLPHP_SP_ASSERTION_ENCRYPTION'), FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) ?? false,

/*
* Whether assertions received by this SP must be signed.
* The value is also used to set the WantAssertionsSigned attribute
* of the SPSSODescriptor element in the exported SAML 2.0 metadata.
*/
'WantAssertionsSigned' => filter_var(getenv('SIMPLESAMLPHP_SP_WANT_ASSERTIONS_SIGNED'), FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) ?? false,

/*
* Whether we require signatures on authentication requests sent from this SP. Set it to:
* - true: authnrequest must be signed (and signature will be validated)
Expand Down