mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			685 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			685 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' => 'ely-accounts-app-password',
 | 
						|
            'vhost' => '/ely.by',
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |