AdSense

網頁

2023/10/5

Nginx 設定負載平衡器 load balancer

Nginx設定簡單的負載平衡器(load balancer)的方式如下。


事前要求

參考「Nginx 設定一個簡單的網頁伺服器」安裝Nginx和建立另一個網頁伺服器,此負載平衡器後面兩台server,分別為同一IP(本範例為172.31.34.165)下的80 port和81 port。

參考「Nginx 修改預設首頁內容」修改預設首頁內容(為了方便識別效果)。


設定負載平衡器

在另一台主機(範例為54.238.246.85)建立一台Nginx。開啟預設的配置檔/etc/nginx/nginx.conf,在http區塊中新增一個upstream區塊如下,後面的"backend"為伺服器群組名稱,區塊內以server指令指向負載平衡器後面的server。預設的負載平衡算法為Round Robin。

upstream backend {
    server 172.31.34.165:80;
    server 172.31.34.165:81;
}

http區塊中的server區塊設定一個location區塊,參數為/;在區塊內設定proxy_pass,參數為upstream的名稱的 URLhttp://backend

location / {
    proxy_pass http://backend;
}

設定好後的nginx.conf內容如下(已刪除註解部分):

/etc/nginx/nginx.conf

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 4096;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    upstream backend {
        server 172.31.34.165:80;
        server 172.31.34.165:81;
    }

    server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        root         /usr/share/nginx/html;

        include /etc/nginx/default.d/*.conf;

        location / {
            proxy_pass http://backend;
        }

        error_page 404 /404.html;
        location = /404.html {
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
    }
}

存檔離開,然後輸入nginx -s reload重新載入配置。


測試

在瀏覽器位址輸入Nginx主機位址http://54.238.246.85,會輪流顯示畫面如下。






沒有留言:

AdSense