feat: added connection to rabbitmq in file management. Created App\Lib\RabbitMQSender from /legacy/application/model/RabbitMQ.php
This commit is contained in:
parent
887c74f97a
commit
5682eec1cc
7 changed files with 200 additions and 140 deletions
9
config/rabbitmq.php
Normal file
9
config/rabbitmq.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'host' => env('RABBITMQ_HOST', 'localhost'),
|
||||
'port' => env('RABBITMQ_PORT', 5672),
|
||||
'user' => env('RABBITMQ_USER', 'libretime'),
|
||||
'password' => env('RABBITMQ_PASSWORD', 'libretime'),
|
||||
'vhost' => env('RABBITMQ_VHOST', '/libretime'),
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue