2016-05-10 04:19:50 +05:30
|
|
|
<?php
|
|
|
|
return [
|
|
|
|
'components' => [
|
|
|
|
'db' => [
|
|
|
|
'dsn' => 'mysql:host=db;dbname=ely_accounts',
|
2016-07-15 03:33:13 +05:30
|
|
|
'username' => 'ely_accounts_user',
|
|
|
|
'password' => 'ely_accounts_password',
|
2016-05-10 04:19:50 +05:30
|
|
|
],
|
|
|
|
'mailer' => [
|
|
|
|
'useFileTransport' => true,
|
|
|
|
],
|
|
|
|
'redis' => [
|
|
|
|
'hostname' => 'redis',
|
|
|
|
'password' => null,
|
|
|
|
'port' => 6379,
|
|
|
|
'database' => 0,
|
|
|
|
],
|
|
|
|
'amqp' => [
|
|
|
|
'host' => 'rabbitmq',
|
|
|
|
'port' => 5672,
|
|
|
|
'user' => 'ely-accounts-app',
|
2016-07-17 20:55:24 +05:30
|
|
|
'password' => 'ely-accounts-app-password',
|
|
|
|
'vhost' => '/ely.by',
|
2016-05-10 04:19:50 +05:30
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|