您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關Nginx 中怎么實現負載均衡與反向代理,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
一、輪詢配置
#定義后端服務器組 upstream nginx-test{ server 192.168.0.128; server 192.168.0.127; } server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "G:/phpstudy/nginx/html"; location / { index index.html index.htm index.php l.php; autoindex on; proxy_pass http://nginx-test; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9001; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } }
二、輪詢加權配置
#定義后端服務器組 upstream nginx-test{ server 192.168.0.128 weight=2; server 192.168.0.127; server 192.168.0.126 backup; # 備份服務器,其他服務器宕機后啟動 } server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "G:/phpstudy/nginx/html"; location / { index index.html index.htm index.php l.php; autoindex on; proxy_pass http://nginx-test; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
三、IP Hash配置
#定義后端服務器組 upstream nginx-test{ ip_hash; server 192.168.0.128; server 192.168.0.127; server 192.168.0.126; } server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "G:/phpstudy/nginx/html"; location / { index index.html index.htm index.php l.php; autoindex on; proxy_pass http://nginx-test; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
四、負載均衡與反向代理區別
1、負載均衡需要通過反向代理來實現
2、反向代理就是指nginx作為前端服務器,將請求轉發到后端,再將后端服務器的結果,返回給客戶端
它在中間做了一個代理服務器的角色
3、負載均衡對反向代理增加了一些策略,因為后端是多臺服務器,nginx會根據設定的策略將請求轉發給一個相對空閑的服務器,對負載進行分流,減輕服務器壓力
五、反向代理配置
#定義后端服務器組 upstream nginx-test{ server 192.168.0.127; } server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "G:/phpstudy/nginx/html"; #代理配置參數 proxy_connect_timeout 180; proxy_send_timeout 180; proxy_read_timeout 180; proxy_set_header Host $host; proxy_set_header X-Forwarder-For $remote_addr; location / { proxy_pass http://nginx-test; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
看完上述內容,你們對Nginx 中怎么實現負載均衡與反向代理有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。