You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
902 B
33 lines
902 B
<?php
|
|
|
|
return [
|
|
'default' => [
|
|
'host' => env('RQM_HOST', 'localhost'),
|
|
'port' => 5672,
|
|
'user' => env('RQM_USER','guest'),
|
|
'password' => env('RQM_PASSWORD','guest'),
|
|
'vhost' => '/',
|
|
'concurrent' => [
|
|
'limit' => 1,
|
|
],
|
|
'pool' => [
|
|
'min_connections' => 1,
|
|
'max_connections' => 10,
|
|
'connect_timeout' => 10.0,
|
|
'wait_timeout' => 3.0,
|
|
'heartbeat' => -1,
|
|
],
|
|
'params' => [
|
|
'insist' => false,
|
|
'login_method' => 'AMQPLAIN',
|
|
'login_response' => null,
|
|
'locale' => 'en_US',
|
|
'connection_timeout' => 3.0,
|
|
'read_write_timeout' => 6.0,
|
|
'context' => null,
|
|
'keepalive' => false,
|
|
'heartbeat' => 3,
|
|
'close_on_destruct' => false,
|
|
],
|
|
]
|
|
];
|