feat: added connection to rabbitmq in file management. Created App\Lib\RabbitMQSender from /legacy/application/model/RabbitMQ.php

This commit is contained in:
Marco Cavalli 2025-02-09 17:24:22 +01:00
parent 887c74f97a
commit 5682eec1cc
7 changed files with 200 additions and 140 deletions

9
config/rabbitmq.php Normal file
View 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'),
];