我们正在处理的Web应用程序使用RabbitMQ进行消息排队。我正在尝试设置Nginx服务器用作负载平衡器。到目前为止,这是我的设置和进度。
服务器1
服务器2
nginx.conf
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream rabbitmq {
server server1:5672;
server server2:5672;
}
server {
listen 5054;
server_name localhost;
location / {
proxy_pass http://rabbitmq;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
在应用程序的配置文件中,RabbitMQ的配置如下:
<RabbitMqConfiguration hostName="server1" virtualHost="/" port="-1" userName="user" password="pass" useRabbitMqPersistence="true" publisherTimeout="00:01:00" />
这是我第一次设置nginx和RabbitMQ,所以很有可能我配置了错误的东西。任何建议和帮助将不胜感激。