Nginx簡單的負載均衡配置示例
使用者訪問http://www.s135.com,將其負載均衡到192.168.1.2:80、192.168.1.3:80、192.168.1.4:80、192.168.1.5:80四臺伺服器。
使用者訪問http://blog.s135.com,將其負載均衡到192.168.1.7伺服器的8080、8081、8082埠。
以下為配置檔案nginx.conf:
worker_processes 10;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
#最大檔案描述符
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 51200;
}
http
{
include conf/mime.types;
default_type application/octet-stream;
keepalive_timeout 120;
tcp_nodelay on;
upstream www.s135.com {
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80;
server 192.168.1.5:80;
}
upstream blog.s135.com {
server 192.168.1.7:8080;
server 192.168.1.7:8081;
server 192.168.1.7:8082;
}
server
{
listen 80;
server_name www.s135.com;
location / {
proxy_pass http://www.s135.com;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
log_format www_s135_com `$remote_addr – $remote_user [$time_local] $request `
`”$status” $body_bytes_sent “$http_referer” `
`”$http_user_agent” “$http_x_forwarded_for”`;
access_log /data1/logs/www.log www_s135_com;
}
server
{
listen 80;
server_name blog.s135.com;
location / {
proxy_pass http://blog.s135.com;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
log_format blog_s135_com `$remote_addr – $remote_user [$time_local] $request `
`”$status” $body_bytes_sent “$http_referer” `
`”$http_user_agent” “$http_x_forwarded_for”`;
access_log /data1/logs/blog.log blog_s135_com;
}
}
附:Nginx 的安裝方法可參照《Nginx 0.5.31 + PHP 5.2.4(FastCGI)搭建可承受3萬以上併發連線數,勝過Apache 10倍的Web伺服器》文章的以下段落(僅做負載均衡,無需支援PHP的安裝方法):
二、安裝PHP 5.2.4(FastCGI模式)
4、建立www使用者和組,以及其使用的目錄:
三、安裝Nginx 0.5.31
1、安裝Nginx所需的pcre庫:
2、安裝Nginx
3、建立Nginx日誌目錄
5、啟動Nginx
相關文章
- Nginx實現簡單的負載均衡Nginx負載
- 簡單實踐搭建 nginx 負載均衡Nginx負載
- nginx配置+uwsgi+負載均衡配置Nginx負載
- 使用Nginx配置TCP負載均衡NginxTCP負載
- Nginx負載均衡配置說明Nginx負載
- nginx Win下實現簡單的負載均衡(3)Session的SqlServer模式配置Nginx負載SessionSQLServer模式
- Nginx/Httpd負載均衡tomcat配置Nginxhttpd負載Tomcat
- NGINX 負載均衡Nginx負載
- 【Nginx】負載均衡Nginx負載
- nginx負載均衡Nginx負載
- nginx Win下實現簡單的負載均衡(1)nginx搭建部署Nginx負載
- Nginx專題(2):Nginx的負載均衡策略及其配置Nginx負載
- Keepalived+Nginx+Tomcat配置高可用負載均衡系統示例NginxTomcat負載
- 配置apache和nginx的tomcat負載均衡ApacheNginxTomcat負載
- 使用nginx配置多個phpfastcgi負載均衡NginxPHPAST負載
- 簡單瞭解負載均衡負載
- Nginx反向代理+負載均衡簡單實現(https方式)Nginx負載HTTP
- Nginx負載均衡模式Nginx負載模式
- Nginx--負載均衡Nginx負載
- nginx 負載均衡搭建Nginx負載
- Nginx負載均衡策略Nginx負載
- 解析 Nginx 負載均衡Nginx負載
- nginx負載均衡原理分析到手動編寫簡易負載均衡器Nginx負載
- Nginx 兩臺伺服器配置負載均衡!!!Nginx伺服器負載
- nginx+tomcat負載均衡配置 火推NginxTomcat負載
- docker下nginx反向代理和負載均衡配置DockerNginx負載
- nginx+tomcat反向代理負載均衡配置NginxTomcat負載
- nginx配置web服務|反向代理|負載均衡NginxWeb負載
- nginx Win下實現簡單的負載均衡(2)站點共享SessionNginx負載Session
- 簡單測試nginx1.90做TCP協議負載均衡的功能NginxTCP協議負載
- Nginx負載均衡詳解Nginx負載
- Nginx負載均衡高可用Nginx負載
- nginx實現負載均衡Nginx負載
- 關於負載均衡的簡單總結負載
- RAC負載均衡的簡單測試(三)負載
- RAC負載均衡的簡單測試(二)負載
- RAC負載均衡的簡單測試(一)負載
- RAC負載均衡的簡單測試(四)負載