Page MenuHomeDevCentral

No OneTemporary

diff --git a/config/broker.php b/config/broker.php
new file mode 100644
index 0000000..94e007b
--- /dev/null
+++ b/config/broker.php
@@ -0,0 +1,41 @@
+<?php
+
+return [
+
+ /*
+ |--------------------------------------------------------------------------
+ | Default message broker driver
+ |--------------------------------------------------------------------------
+ |
+ | This option controls the default message broker "driver" that will be
+ | used to send messages.
+ |
+ | Supported: "amqp"
+ |
+ */
+
+ 'driver' => env('BROKER_DRIVER', 'amqp'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Message broker connections
+ |--------------------------------------------------------------------------
+ |
+ | Here are each of the message broker connections setup for the application.
+ |
+ */
+
+ 'connections' => [
+
+ 'amqp' => [
+ 'driver' => 'amqp',
+ 'host' => env('BROKER_HOST', 'localhost'),
+ 'port' => env('BROKER_PORT', 5672),
+ 'username' => env('BROKER_USERNAME', 'guest'),
+ 'password' => env('BROKER_PASSWORD', 'guest'),
+ 'vhost' => env('BROKER_VHOST', '/'),
+ ],
+
+ ],
+
+];

File Metadata

Mime Type
text/x-diff
Expires
Thu, Sep 18, 02:09 (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2987475
Default Alt Text
(1 KB)

Event Timeline