SAML Server: Difference between revisions

m
Line 58:
 
; /var/simplesamlphp/metadata/saml20-idp-hosted.php
 
{{UC}}
'privatekey' => '/etc/apache2/ssl/wildcard.testlab.com.pem',
'certificate' => '/etc/apache2/ssl/wildcard.testlab.com.cer',
'auth' => 'my-ldap',
 
Uncomment the below section:
 
'attributes.NameFormat' => 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri',
'authproc' => array(
// Convert LDAP names to oids.
100 => array('class' => 'core:AttributeMap', 'name2oid'),
),
 
Disable the message signing as the NetScaler does not understand this signature type
 
'saml20.sign.response' => FALSE,
'saml20.sign.assertion' => FALSE,
 
; /var/simplesamlphp/metadata/saml20-sp-remote.php
{{UC}}