ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
saml20-idp-hosted.php
Go to the documentation of this file.
1<?php
8$metadata['__DYNAMIC:1__'] = array(
9 /*
10 * The hostname of the server (VHOST) that will use this SAML entity.
11 *
12 * Can be '__DEFAULT__', to use this entry by default.
13 */
14 'host' => '__DEFAULT__',
15
16 // X.509 key and certificate. Relative to the cert directory.
17 'privatekey' => 'server.pem',
18 'certificate' => 'server.crt',
19
20 /*
21 * Authentication source to use. Must be one that is configured in
22 * 'config/authsources.php'.
23 */
24 'auth' => 'example-userpass',
25
26 /* Uncomment the following to use the uri NameFormat on attributes. */
27 /*
28 'attributes.NameFormat' => 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri',
29 'authproc' => array(
30 // Convert LDAP names to oids.
31 100 => array('class' => 'core:AttributeMap', 'name2oid'),
32 ),
33 */
34
35 /*
36 * Uncomment the following to specify the registration information in the
37 * exported metadata. Refer to:
38 * http://docs.oasis-open.org/security/saml/Post2.0/saml-metadata-rpi/v1.0/cs01/saml-metadata-rpi-v1.0-cs01.html
39 * for more information.
40 */
41 /*
42 'RegistrationInfo' => array(
43 'authority' => 'urn:mace:example.org',
44 'instant' => '2008-01-17T11:28:03Z',
45 'policies' => array(
46 'en' => 'http://example.org/policy',
47 'es' => 'http://example.org/politica',
48 ),
49 ),
50 */
51);
An exception for terminatinating execution or to throw for unit testing.
$metadata['__DYNAMIC:1__']
SAML 2.0 IdP configuration for SimpleSAMLphp.