scimserviceprovider/lib/Config/config.php

15 lines
295 B
PHP
Raw Normal View History

2023-03-03 11:21:27 +00:00
<?php
return [
/**
* Allowed value are 'basic' (for Basic Auth) and 'bearer' (for Bearer Token Auth)
* The value 'basic' can be considered the default one
*/
'auth_type' => 'bearer',
// Config values for JWTs
'jwt' => [
'secret' => 'secret'
]
];