Skip to content
Snippets Groups Projects
Commit 4e552537 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Template metadata for SAML 2.0 IdP was wrong about where to put the...

Template metadata for SAML 2.0 IdP was wrong about where to put the configuration for base64attributes. This should be in spremote and not in idphosted

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@219 44740490-163a-0410-bde0-09ae8108e29a
parent e407ec9f
No related branches found
No related tags found
No related merge requests found
...@@ -19,11 +19,6 @@ $metadata = array( ...@@ -19,11 +19,6 @@ $metadata = array(
'privatekey' => 'server.pem', 'privatekey' => 'server.pem',
'certificate' => 'server.crt', 'certificate' => 'server.crt',
/* If base64attributes is set to true, then all attributes will be base64 encoded. Make sure
* that you set the SP to have the same value for this.
*/
'base64attributes' => false,
// Authentication plugin to use. login.php is the default one that uses LDAP. // Authentication plugin to use. login.php is the default one that uses LDAP.
'auth' => 'auth/login.php', 'auth' => 'auth/login.php',
......
...@@ -28,10 +28,16 @@ $metadata = array( ...@@ -28,10 +28,16 @@ $metadata = array(
'ForceAuthn' => 'false', 'ForceAuthn' => 'false',
'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient', 'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient',
/* If base64attributes is set to true, then all attributes will be base64 encoded. Make sure
* that you set the SP to have the same value for this.
*/
'base64attributes' => false,
'simplesaml.attributes' => true, 'simplesaml.attributes' => true,
// 'attributemap' => 'test', //'attributemap' => 'test',
// 'attributes' => array('mail') //'attributes' => array('mail')
/*
/*
* When request.signing is true the certificate of the sp * When request.signing is true the certificate of the sp
* will be used to verify all messages received with the HTTPRedirect binding. * will be used to verify all messages received with the HTTPRedirect binding.
* *
...@@ -39,7 +45,7 @@ $metadata = array( ...@@ -39,7 +45,7 @@ $metadata = array(
* before verification can be done. * before verification can be done.
*/ */
'request.signing' => false, 'request.signing' => false,
'certificate' => "saml2sp.example.org.crt", 'certificate' => "saml2sp.example.org.crt"
), ),
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment