11 lines
380 B
PHP
11 lines
380 B
PHP
<?php
|
|
// /kngil/bbs/oidc_config.php
|
|
|
|
return [
|
|
'issuer' => 'https://sss.hmac.kr/oidc', // 예: https://idp.example.com/auth/realms/master
|
|
'client_id' => 'cc6f2f41-2705-4c7d-bffc-24c1d6b484f1',
|
|
'client_secret' => 'ebjOE4I-gLnANV5KY623hClSAy',
|
|
'redirect_url' => "https://kngil.hmac.kr/kngil/auth/oidc-callback.php",
|
|
'scopes' => ['openid', 'profile', 'email'],
|
|
];
|