mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 09:48:42 +05:30
21 lines
420 B
PHP
21 lines
420 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'user' => [
|
|
'secret' => 'tests-secret-key',
|
|
],
|
|
'reCaptcha' => [
|
|
'public' => 'public-key',
|
|
'secret' => 'private-key',
|
|
],
|
|
],
|
|
'modules' => [
|
|
'authserver' => [
|
|
'baseDomain' => 'http://localhost',
|
|
],
|
|
],
|
|
'params' => [
|
|
'authserverHost' => 'authserver.ely.by',
|
|
],
|
|
];
|