mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
21 lines
405 B
PHP
21 lines
405 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',
|
||
|
|
),
|
||
|
|
),
|
||
|
|
|
||
|
|
);
|