mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
25 lines
591 B
PHP
25 lines
591 B
PHP
<?php
|
|
|
|
$config = array(
|
|
|
|
'admin' => array(
|
|
'core:AdminPassword',
|
|
),
|
|
|
|
'example-userpass' => array(
|
|
'exampleauth:UserPass',
|
|
// username: sso_user
|
|
// password: user123#
|
|
'sso_user:user123#' => array(
|
|
'uid' => array('1'),
|
|
'eduPersonAffiliation' => array('group1'),
|
|
'email' => 'sso_user@example.com',
|
|
),
|
|
'sso_user2:user123#' => array(
|
|
'uid' => array('2'),
|
|
'eduPersonAffiliation' => array('group1'),
|
|
'email' => 'sso_user2@example.com',
|
|
),
|
|
),
|
|
|
|
);
|