跳至主要內容

[nginx] setting load balancer

設定 load balancer
使用 upstream 這個 directive。
假設 2 個 ip:192.168.1.1 及 192.168.1.2 的 2368 port 都有相同的 app。

http {
upstream my_upstream {
server 192.168.1.1:2368;
server 192.168.1.2:2368;
}
server {
server_name www.example.com;
location / {
proxy_pass http://my_upstream; # 指到設定的 upstream 及 protocol
}
}
}

reference: https://blog.hellojcc.tw/2015/12/07/nginx-beginner-tutorial/

分類:nginx
由 Compete Themes 設計的 Author 佈景主題