mirror of
http://124.126.16.154:8888/singularity/hyperf-saml.git
synced 2026-01-15 05:35:09 +08:00
feat(config): 更新了配置文件,和 ConfigProvider
This commit is contained in:
25
publish/saml.php
Normal file
25
publish/saml.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'type' => 'sp',
|
||||
// 'type' => 'idp',
|
||||
|
||||
'server' => [
|
||||
'idp_id' => '', // 单点登录
|
||||
|
||||
// sp config
|
||||
// 以下内容向服务端申请
|
||||
'idp_assertion_url' => '', // 判断用户是否登录
|
||||
'idp_logout_url' => '', //单点退出
|
||||
],
|
||||
'client' => [
|
||||
// idp config
|
||||
|
||||
// sp config
|
||||
// 以下内容向服务端申请
|
||||
'entity_id' => '', // 业务系统唯一标识
|
||||
'acs_url' => '', // 回调地址
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user