《寶可夢阿爾宙斯》花巖怪捕獲教程 全幽火位置分享
Nginx配置
修改配置檔案/opt/openresty/nginx/conf/nginx.conf進行配置(根據自己nginx的安裝路徑)
1.方式一:直接修改配置檔案
#配置負載的伺服器及埠
http {
upstream tomcatserver{ #分發規則如下
ip_hash;
server 192.168.36.189:80 weight=3;
server 192.168.36.190:80 weight=7;
#預設不加引數的話,則會按照順序進行分配,如果有裝置down掉,則自動剔除
代表訪問機率分別為30%和70%,ip_hash會通過雜湊演算法使使用者第二次登陸時不會去訪問另一臺裝置
#server 192.168.36.189:80 weight=3 max_fails=3 fail_timeout=30s;
#server 192.168.36.189:80 weight=3 backup;
其他引數使用說明:
down:不參與負載
backup:表示當非backup機器down掉或者忙碌時,請求backup機器進行幫忙工作
fail_timeout:超時時間,預設10s
max_fails:最大失敗次數
}
server{
listen 8080; #監聽8080埠
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location/ { #代表當訪問nginx ip:8080/時,跳轉至http://tomcatserver,也就是我們上方所配置的tomcatserver
proxy_pass http://tomcatserver;
root html;
index index.html index.htm;
}
}
2.方式二:配置檔案分離
#建立一個目錄存放
mkdir -p /opt/openresty/nginx/conf/app
vim /opt/openresty/nginx/conf/app/test.conf
#### upstream defined ###
#分發規則寫在該檔案下 upstream tomcatserver { server 192.168.36.189:80 weight=3; server 192.168.36.190:80 weight=7; }
vim /opt/openresty/nginx/conf/nginx.conf
http { include app/test.conf; #配置我們新建立的配置檔案路徑 server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; proxy_pass http://tomcatserver; } }