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

adding configuration and metadata file for openid

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@69 44740490-163a-0410-bde0-09ae8108e29a
parent 85551fe3
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,13 @@ $config = array (
'auth.radius.port' => '1812',
'auth.radius.secret' => 'topsecret'
/*
* These parameters are only relevant if you setup an OpenID Provider.
*/
'openid.userid_attributename' => 'eduPersonPrincipalName',
'openid.delegation_prefix' => 'https://openid.feide.no/',
'openid.filestore' => '/tmp/openidstore',
);
......
<?php
/*
* OpenID Provider configuration
*
*/
$metadata = array(
// Use the hostname as the array key
'openidserver.example.org' => array(
// The hostname of the server (VHOST) that this SAML entity will use.
'host' => 'openidserver.example.org',
// Authentication plugin to use. auth/login.php is the default one that uses LDAP.
'auth' => 'saml2/sp/initSSO.php'
)
);
?>
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