📬RabbitMQ

The best guide for installing RabbitMQ is the official website itself. Please follow the installation guide that fits your environment here.

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 Engine📧Email provider🚢Deployment

Last updated