mirror of
https://github.com/elyby/accounts.git
synced 2024-11-14 09:16:22 +05:30
df1859f0c1
Исправлена ошибка доступа к authserver из-за перехода на использование хостов, а не доменов
21 lines
407 B
PHP
21 lines
407 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'user' => [
|
|
'secret' => 'tests-secret-key',
|
|
],
|
|
'reCaptcha' => [
|
|
'public' => 'public-key',
|
|
'secret' => 'private-key',
|
|
],
|
|
],
|
|
'modules' => [
|
|
'authserver' => [
|
|
'host' => 'localhost',
|
|
],
|
|
],
|
|
'params' => [
|
|
'authserverHost' => 'authserver.ely.by',
|
|
],
|
|
];
|