mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
27 lines
680 B
PHP
27 lines
680 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=db;dbname=ely_accounts',
|
|
'username' => 'ely_accounts_user',
|
|
'password' => 'ely_accounts_password',
|
|
],
|
|
'mailer' => [
|
|
'useFileTransport' => true,
|
|
],
|
|
'redis' => [
|
|
'hostname' => 'redis',
|
|
'password' => null,
|
|
'port' => 6379,
|
|
'database' => 0,
|
|
],
|
|
'amqp' => [
|
|
'host' => 'rabbitmq',
|
|
'port' => 5672,
|
|
'user' => 'ely-accounts-app',
|
|
'password' => 'app-password',
|
|
'vhost' => '/account.ely.by',
|
|
],
|
|
],
|
|
];
|