Renamed Rabbit instances to use RabbitMq

This commit is contained in:
Alejandro Celaya
2021-12-12 10:32:57 +01:00
parent cb1705b6e8
commit 8e5730f374
6 changed files with 21 additions and 20 deletions
+7 -7
View File
@@ -10,10 +10,10 @@ use function Shlinkio\Shlink\Common\env;
return [
'rabbit' => [
'rabbitmq' => [
'enabled' => (bool) env('RABBITMQ_ENABLED', false),
'host' => env('RABBITMQ_HOST'),
'port' => env('RABBITMQ_PORT', '5672'),
'port' => (int) env('RABBITMQ_PORT', '5672'),
'user' => env('RABBITMQ_USER'),
'password' => env('RABBITMQ_PASSWORD'),
'vhost' => env('RABBITMQ_VHOST', '/'),
@@ -37,11 +37,11 @@ return [
ConfigAbstractFactory::class => [
AMQPStreamConnection::class => [
'config.rabbit.host',
'config.rabbit.port',
'config.rabbit.user',
'config.rabbit.password',
'config.rabbit.vhost',
'config.rabbitmq.host',
'config.rabbitmq.port',
'config.rabbitmq.user',
'config.rabbitmq.password',
'config.rabbitmq.vhost',
],
],
+1 -1
View File
@@ -4,7 +4,7 @@ declare(strict_types=1);
return [
'rabbit' => [
'rabbitmq' => [
'enabled' => true,
'host' => 'shlink_rabbitmq',
'user' => 'rabbit',