Nginx簡單配置(二)負載均衡

2021-09-02 13:39:57 字數 2726 閱讀 6248

#user  nobody;

worker_processes  1;

#error_log  logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events   #1.down 表示單前的server暫時不參與負載 

#2.weight 預設為1.weight越大,負載的權重就越大。 

#3.max_fails :允許請求失敗的次數預設為1.當超過最大次數時,返回proxy_next_upstream 模組定義的錯誤 

#4.fail_timeout:max_fails次失敗後,暫停的時間。 

#5.backup: 其它所有的非backup機器down或者忙的時候,請求backup機器。所以這台機器壓力會最輕。 

server {

listen       80;

server_name  localhost;

index index.jsp index.htm index.php;

#root d:\nginx;  ##專案目錄 d:\nginx\boss\web-inf

#charset koi8-r;

#access_log  logs/host.access.log  main;

#location / {

#   root   html;

#    index  index.html index.htm;   ##進入nginx 的html資料夾下的 index頁, 在index 頁進行重定向

location / {

proxy_pass http://aaa;  ##引用upstream 

expires 24h; #設定過期時間  

nginx負載均衡簡單配置

nginx負載均衡簡單配置 準備三颱虛擬機器來做這個實驗 192.168.232.132 web伺服器 192.168.232.133 web伺服器 192.168.232.134 負載均衡伺服器 1 匯入外部軟體庫 plain view plain copy print rpm uvh rpm u...

nginx 負載均衡簡單配置

nginx有個特別好使的功能,就是負載均衡。可以保證後台服務的穩定發布,而不會出現發布過程中會出現的502。配置起來也很簡單。1.多個後端服務。我這裡有三個後端tomcat,提供了簡單的資料返回 2.nginx.conf配置 這裡為了不干擾原有的配置,我單獨寫了乙個檔案,blog.conf blog...

nginx負載均衡簡單配置

nginx負載均衡簡單配置 準備三颱虛擬機器來做這個實驗 192.168.232.132 web伺服器 192.168.232.133 web伺服器 192.168.232.134 負載均衡伺服器 1 匯入外部軟體庫 plain view plain copy print rpm uvh rpm u...