📬RabbitMQ

The best guide for installing RabbitMQ is the official website itself. Please follow the installation guide that fits your environment herearrow-up-right.

circle-exclamation

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": "/"
  }
🔎Search Enginechevron-right📧Email providerchevron-right🚢Deploymentchevron-right

Last updated