123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- use function Hyperf\Support\env;
- return [
- 'default' => [
- 'host' => env('AMQP_HOST', 'localhost'),
- 'port' => (int) env('AMQP_PORT', 5672),
- 'user' => env('AMQP_USER', 'guest'),
- 'password' => env('AMQP_PASSWORD', 'guest'),
- 'vhost' => env('AMQP_VHOST', '/'),
- 'concurrent' => [
- 'limit' => 1,
- ],
- 'pool' => [
- 'connections' => 2,
- ],
- 'params' => [
- 'insist' => false,
- 'login_method' => 'AMQPLAIN',
- 'login_response' => null,
- 'locale' => 'en_US',
- 'connection_timeout' => 3,
- 'read_write_timeout' => 6,
- 'context' => null,
- 'keepalive' => true,
- 'heartbeat' => 3,
- 'channel_rpc_timeout' => 0.0,
- 'close_on_destruct' => false,
- 'max_idle_channels' => 10,
- ],
- ],
- ];
|