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.conf) HTTP負載均衡/TCP負載均衡負載NginxHTTPTCP
- Nginx實現簡單的負載均衡Nginx負載
- 簡單實踐搭建 nginx 負載均衡Nginx負載
- nginx配置+uwsgi+負載均衡配置Nginx負載
- Keepalived+Nginx+Tomcat配置高可用負載均衡系統示例NginxTomcat負載
- Nginx/Httpd負載均衡tomcat配置Nginxhttpd負載Tomcat
- 使用Nginx配置TCP負載均衡NginxTCP負載
- nginx Win下實現簡單的負載均衡(3)Session的SqlServer模式配置Nginx負載SessionSQLServer模式
- nginx安裝及負載均衡配置Nginx負載
- Nginx專題(2):Nginx的負載均衡策略及其配置Nginx負載
- nginx Win下實現簡單的負載均衡(1)nginx搭建部署Nginx負載
- nginx負載均衡Nginx負載
- NGINX 負載均衡Nginx負載
- 【Nginx】負載均衡Nginx負載
- 簡單瞭解負載均衡負載
- nginx負載均衡原理分析到手動編寫簡易負載均衡器Nginx負載
- Nginx負載均衡模式Nginx負載模式
- docker下nginx反向代理和負載均衡配置DockerNginx負載
- Nginx 兩臺伺服器配置負載均衡!!!Nginx伺服器負載
- nginx配置web服務|反向代理|負載均衡NginxWeb負載
- Python實現簡單負載均衡Python負載
- nginx Win下實現簡單的負載均衡(2)站點共享SessionNginx負載Session
- Nginx負載均衡高可用Nginx負載
- 012.Nginx負載均衡Nginx負載
- Nginx負載均衡詳解Nginx負載
- nginx實現負載均衡Nginx負載
- 記一次nginx負載均衡配置情況Nginx負載
- 【Nginx】Windows平臺下配置Nginx服務實現負載均衡NginxWindows負載
- 負載均衡簡介負載
- 負載均衡之--Nginx、LVS、HAProxy負載Nginx
- Nginx+Tomcat部署負載均衡NginxTomcat負載
- nginx學習之負載均衡Nginx負載
- Nginx服務系列——負載均衡Nginx負載
- 使用nginx進行負載均衡Nginx負載
- Nginx負載配置Nginx負載
- centos7下配置nginx反向代理負載均衡叢集CentOSNginx負載
- Nginx負載均衡之健康檢查Nginx負載
- Nginx 學習系列(二) ————- 負載均衡Nginx負載
- Nginx 學習系列(二) ------------- 負載均衡Nginx負載