/*************
| PROTOCOLS |
*************/
/*
* Which functionality in SimpleSAMLphp do you want to enable. Normally you would enable only
* one of the functionalities below, but in some cases you could run multiple functionalities.
* In example when you are setting up a federation bridge.
*/
'enable.saml20-idp' => true,
'enable.adfs-idp' => false,
<?php
//$metadata['urn:x-simplesamlphp:api.everlite.de'] = [
$metadata['api.everlite.de/simplesaml'] = [
/*
* The hostname of the server (VHOST) that will use this SAML entity.
*
* Can be '__DEFAULT__', to use this entry by default.
*/
'host' => 'api.everlite.de',
// X.509 key and certificate. Relative to the cert directory.
'privatekey' => 'api.everlite.de.pem',
'certificate' => 'api.everlite.de.crt',
/*
* Authentication source to use. Must be one that is configured in
* 'config/authsources.php'.
*/
//'auth' => 'example-userpass',
'auth' => 'everlite-ldap',
/* Uncomment the following to use the uri NameFormat on attributes. */
'attributes.NameFormat' => 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri',
'authproc' => [
// Convert LDAP names to oids.
100 => ['class' => 'core:AttributeMap', 'name2oid'],
],
/* <-- SNAPP --> */