Nginx負載均衡-window伺服器
阿新 • • 發佈:2018-12-05
1.nginx官網
http://nginx.org/en/download.html 解壓雙擊nginx.exe檔案,服務開啟,nginx啟動
啟動後,檢視應用程序
2.開啟nginx-1.14.0/conf/nginx.conf,進行配置
①上傳檔案限制
②負載均衡配置/nginx/conf/nginx.conf
#gzip on; upstream 192.168.xx.xx { server 127.0.0.1:8080; server 127.0.0.1:8081; server 127.0.0.1:8082; server 127.0.0.1:8083; } server { listen 80; server_name www.xxx.com; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://192.168.xx.xx; } }
3.配置tomcat,server.xml
①配置關閉埠(同一伺服器上需要修改)
②配置http埠
其中proxyPort是解決專案重定向問題,tomcat處理完請求丟失埠,指定其代理埠
③開啟叢集
④配置tomcat預設訪問的專案路徑