這篇文章是前邊文章的後續,在騰訊雲端伺服器上安裝了3個tomcat伺服器和一個nginx伺服器,利用nginx伺服器均衡3個tomcat伺服器的訪問,入門感覺還是很簡單的,關鍵是注意一些細節並提高後邊的學習
進入安裝包下的conf/nginx.conf,注意一定是安裝包下的(我的是在installnginx下) ,而不是原始碼下的conf。修改文件為:
http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; <strong> upstream nginxBalance { server 123.206.75.62:8080 weight=1; server 123.206.75.62:8180 weight=1; server 123.206.75.62:8280 weight=1; }</strong> server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { <strong>proxy_pass http://nginxBalance;</strong> root html; index index.html index.htm; }
OK,基本的負載平衡配置就完成了,剩下的就是更深入的學習了 以上就介紹了 Linux下利用Niginx進行負載平衡,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。