ubuntu16.04 配置 nginx 簡單負載均衡

主機:192.168.0.118php

負載機1:192.168.0.117html

負載機2:192.168.0.105nginx

 

第一步:編輯主機hosts文件,配置域名瀏覽器

vi /etc/hosts

127.0.0.1     www.nginx.local.combash

 第二步:編輯主機nginx配置文件,在http段加入以下代碼spa

vi /etc/nginx/nginx.conf

http {
    keepalive_timeout 65;
    types_hash_max_size 2048;code

    server_names_hash_bucket_size 128;
    client_header_buffer_size 16k;
    large_client_header_buffers 4 8k;
    upstream servergroup {
        server 192.168.0.105:80 weight=2;
        server 192.168.0.117:80 weight=2;
    }

    server {
        listen 80;
        server_name www.nginx.local.com;
        location / {
            root /var/www/html;
            index index.html index.php;
            proxy_pass http://servergroup;
        }
    }
server

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}
 htm

第三步:blog

編輯負載機1和負載機2的配置文件,在http段加入以下代碼

server {
        listen 80;
        server_name www.nginx.local.com;
        index index.php;
    }
 

第四步:編輯負載機1和負載機2的項目根目錄index.php,使之分別輸出各自ip

第五步:本地虛擬機的話,須要在C:\Windows\System32\drivers\etc\hosts 加入

192.168.0.118    www.nginx.local.com

::1    www.nginx.local.com

第六步:在瀏覽器訪問www.nginx.local.com,刷新出現負載機不一樣的ip

配置成功。

相關文章
相關標籤/搜索