我已经在具有ubuntu服务器16.04的计算机上开发了具有节点js的Rest API,并且在具有相同SO的另一台计算机上开发了一个Rest API,我已经将Nginx安装为反向代理。现在我想在负载平衡中设置我的Rest API,在两台服务器上部署我的应用程序。 如何将Nginx配置为与公开相同节点js应用程序的服务器的负载均衡器?
答案 0 :(得分:1)
根据DigitalOcean 编辑您的 / etc / nginx / sites-available / default ,例如
upstream backend_hosts {
server host1.example.com;
server host2.example.com;
server host3.example.com;
}
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://backend_hosts;
}
}