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

  1. <?php
  2. return [
  3. 'default' => [
  4. 'host' => env('RQM_HOST', 'localhost'),
  5. 'port' => 5672,
  6. 'user' => env('RQM_USER','guest'),
  7. 'password' => env('RQM_PASSWORD','guest'),
  8. 'vhost' => '/',
  9. 'concurrent' => [
  10. 'limit' => 1,
  11. ],
  12. 'pool' => [
  13. 'min_connections' => 1,
  14. 'max_connections' => 10,
  15. 'connect_timeout' => 10.0,
  16. 'wait_timeout' => 3.0,
  17. 'heartbeat' => -1,
  18. ],
  19. 'params' => [
  20. 'insist' => false,
  21. 'login_method' => 'AMQPLAIN',
  22. 'login_response' => null,
  23. 'locale' => 'en_US',
  24. 'connection_timeout' => 3.0,
  25. 'read_write_timeout' => 6.0,
  26. 'context' => null,
  27. 'keepalive' => false,
  28. 'heartbeat' => 3,
  29. 'close_on_destruct' => false,
  30. ],
  31. ]
  32. ];