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

Adding several new examples of auth sources...

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1224 44740490-163a-0410-bde0-09ae8108e29a
parent 1b25e8e3
No related branches found
No related tags found
No related merge requests found
......@@ -25,15 +25,43 @@ $config = array(
'example-userpass' => array(
'exampleauth:UserPass',
'student:studentpass' => array(
'uid' => 'student',
'uid' => array('test'),
'eduPersonAffiliation' => array('member', 'student'),
),
'employee:employeepass' => array(
'uid' => 'employee',
'uid' => array('employee'),
'eduPersonAffiliation' => array('member', 'employee'),
),
),
'yubikey' => array(
'authYubiKey:YubiKey',
'id' => '000',
// 'key' => '012345678',
),
'openid' => array(
'openid:OpenIDConsumer',
),
'feide' => array(
'feide:Feide',
),
'papi' => array(
'authpapi:PAPI',
),
'saml2' => array(
'saml2:SP',
),
'facebook' => array(
'authfacebook:Facebook',
'api_key' => 'xxxxxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxx',
),
);
?>
\ No newline at end of file
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