mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
Make Chrly's domain configurable
This commit is contained in:
@@ -7,7 +7,7 @@ return [
|
||||
],
|
||||
'components' => [
|
||||
'cache' => [
|
||||
'class' => \yii\caching\FileCache::class,
|
||||
'class' => yii\caching\FileCache::class,
|
||||
],
|
||||
'security' => [
|
||||
// It's allows us to increase tests speed by decreasing password hashing algorithm complexity
|
||||
|
@@ -19,7 +19,10 @@ return [
|
||||
'singletons' => [
|
||||
GuzzleHttp\ClientInterface::class => GuzzleHttp\Client::class,
|
||||
Ely\Mojang\Api::class => Ely\Mojang\Api::class,
|
||||
common\components\SkinsSystemApi::class => common\components\SkinsSystemApi::class,
|
||||
common\components\SkinsSystemApi::class => [
|
||||
'class' => common\components\SkinsSystemApi::class,
|
||||
'__construct()' => 'http://' . (getenv('CHRLY_HOST') ?: 'skinsystem.ely.by'),
|
||||
],
|
||||
],
|
||||
],
|
||||
'components' => [
|
||||
|
Reference in New Issue
Block a user