tar jxvf pcre-7.9.tar.bz2
cd pcre-7.9/
./configure
make
make install
tar zxvf nginx-0.6.36.tar.gz
cd nginx-0.6.36/
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module
make
make install
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
loading.abc.com和loading.xyz.com域名均指向nginx所在的服务器IP,用户访问[url]http://loading.abc.com[/url],将其负载均衡到192.168.1.2:80、192.168.1.3:80、192.168.1.4:80、192.168.1.5:80四台服务器。用户访问[url]http://loading.xyz.com[/url],将其负
#error_log logs/error.log notice;
#error_log logs/error.log info;
worker_rlimit_nofile 51200;
use epoll;
worker_connections 51200;
}
include conf/mime.types;
default_type application/octet-stream;
keepalive_timeout 120;
tcp_nodelay on;
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80;
server 192.168.1.5:80;
}
server 192.168.1.7:8080;
server 192.168.1.7:8081;
server 192.168.1.7:8082;
}
listen 80;
server_name loading.abc.com;
location / {
proxy_pass [url]http://abc[/url];
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /www/logs/abc.log abc;
}
listen 80;
server_name loading.xyz.com;
location / {
proxy_pass [url]http://xyz[/url];
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /www/logs/xyz.log xyz;
}
}