配置实例一:对所有请求实现一般轮训规则的负载均衡,以下是最简单的配置实现一般轮询
upstream backend #配置后端服务器器组
{
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80; #默认weight=1
}
server
{
listen 80;
server_name www.website.com;_
index index.html index.htm;
location / {
proxy_pass http://backend;
proxy_set_header Host $host;
...
}
...
}
配置实例二:对所有请求实现加权轮询规则的负载均衡
upstream backend #配置后端服务器器组
{
server 192.168.1.2:80 weight=5;
server 192.168.1.3:80 weight= 2
server 192.168.1.4:80; #默认weight=1
}
server
{
listen 80;
server_name www.website.com;_
index index.html index.htm;
location / {
proxy_pass http://backend;
proxy_set_header Host $host;
...
}
...
}:
配置案例三:对特定资源实现负载均衡
设定了两组被代理的服务器组,名为“videobackend“的一组用于对请求video资源的客户端请求进行负载均衡,另一组用
对请求file资源的客户单请求进行负载均衡。通过对location块uri 的不同配置,我们就很轻易实t现了对特定资源的负载均衡。
所有对” http://www.website.com/video“ 的请求都会在videobackend 服务器组中获得负载均衡效果,而” http://www.website.com/file/*“的请求都会在filebackend 服务器组中获得均衡效果。在该实例中展示的是实现的是一般负载均衡的配置,对于加权负载均衡的配置可以参考”配置实例二“
在location /file/ {.....} 中,我们将客户端的真实信息分别填充到了请求头中”host“、”X-Real-IP“和 ”X-Forwarded-For“头域,这样后端服务器组收到的请求中就保留了客户端的真实信息,而不是nginx 服务器的信息。示例代码如下:
upstream videobackend #配置后端服务器器组1
{
server 192.168.1.2 ;
server 192.168.1.3 ;
server 192.168.1.4 ;
}
upstream videobackend #配置后端服务器器组2
{
server 192.168.1.5 ;
server 192.168.1.6 ;
server 192.168.1.7 ;
}
server
{
listen 80;
server_name www.website.com;
index index.html index.htm;
location /video/ {
proxy_pass http://videobackend;
proxy_set_header Host $host;
...
}
location /file/ {
proxy_pass http://filebackend;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
...
}
...
}
配置实例四:对不同域名实现负载均衡
在本实例中,我们设定了两个虚拟服务器和两组后端被代理的服务器器组,分别用来接收不同的域名请求和对这些请求进行负载
均衡
upstream homebackend #配置后端服务器器组1
{
server 192.168.1.2 ;
server 192.168.1.3 ;
server 192.168.1.4 ;
}
upstream bbsbackend #配置后端服务器器组2
{
server 192.168.1.5 ;
server 192.168.1.6 ;
server 192.168.1.7 ;
}
server
{
listen 80;
server_name home.website.com;
index index.html index.htm;
location / {
proxy_pass http://homebackend;
proxy_set_header Host $host;
...
}
...
}
server
{
listen 80;
server_name bbs.website.com;
index index.html index.htm;
location / {
proxy_pass http://bbsbackend;
proxy_set_header Host $host;
...
}
...
}
配置实例五:实现带有url重写的负载均衡
upstream backend
{
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80;
}
upstream phpserver
{
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80;
}
upstream jspserver
{
server 192.168.1.2:80;
server 192.168.1.3:80;
server 192.168.1.4:80;
}
server
{
listen 80;
server_name www.website.com;
index index.html index.htm;
location /file/{
rewrite ^(/file/.*)/media/(.*)\.*$ $1/mp3/$2.mp3 last;
}
location ~* \.php$ { #根据访问的url 的文件后缀
proxy_pass http://phpserver;
}
location ~* \.jsp$ {
proxy_pass http://jspserver;
}
location / {
proxy_pass http://backend;
proxy_set_header Host $host;
...
}
...
}