๐ฌRabbitMQ
The best guide for installing RabbitMQ is the official website itself. Please follow the installation guide that fits your environment here.
Remember that RabbitMQ requires that you have also installed Erlang. Don't worry though, the official website explains everything you need to do
Broker configuration
Set the BrokerConfiguration setting in the appsettings.json files in all web application projects. Following is an example for local RabbitMQ configuration.
"BrokerConfiguration": {
"Host": "localhost",
"Port": 5672,
"Username": "harmony",
"Password": "my_super_password",
"VirtualHost": "/"
}
Read next: Configuring the email service provider and a search engine
๐Search Engine๐งEmail provider๐ขDeploymentLast updated