22 Aug 2018
nginx 根据 url 进行负载分配即 location 部分的相关设置
nginx 根据不同的url进行负载分配。
语法规则: location [=|~|~*|^~] /uri/ { … }
- =开头表示精确匹配
- ^~开头表示 uri 以某个常规字符串开头,理解为匹配 url 路径即可。nginx 不对 url 做编码,因此请求为 /static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。
- ~开头表示区分大小写的正则匹配
- ~*开头表示不区分大小写的正则匹配
- !~和!~*分别为区分大小写不匹配及不区分大小写不匹配 的正则
- / 通用匹配,任何请求都会匹配到。
多个location配置的情况下匹配顺序为:
首先匹配=, 其次匹配^~, 其次是按文件中顺序的正则匹配, 最后是交给/ 通用匹配。 当有匹配成功时候,停止匹配,按当前匹配规则处理请求。
location = / {
#规则A
}
location = /login {
#规则B
}
location ^~ /static/ {
#规则C
}
location ~ \.(gif|jpg|png|js|css)$ {
#规则D
}
location ~* \.png$ {
#规则E
}
location !~ \.xhtml$ {
#规则F
}
location !~* \.xhtml$ {
#规则G
}
location / {
#规则H
}
那么产生的效果如下:
- 访问根目录/, 比如 http://localhost/ 将匹配规则 A
- 访问 http://localhost/login 将匹配规则 B,http://localhost/register 则匹配规则 H
- 访问 http://localhost/static/a.html 将匹配规则 C
- 访问 http://localhost/static/c.png 则优先匹配到规则 C
- 访问 http://localhost/a.PNG 则匹配规则 E, 而不会匹配规则 D,因为规则 E 不区分大小写。
- 访问 http://localhost/a.xhtml 不会匹配规则 F 和规则 G,http://localhost/a.XHTML不会匹配规则G,因为不区分大小写。规则 F,规则 G属于排除法,符合匹配规则但是不会匹配到,所以想想看实际应用中哪里会用到。
- 访问 http://localhost/category/id/1111 则最终匹配到规则 H,因为以上规则都不匹配,这个时候应该是 nginx 转发请求给后端应用服务器,比如 FastCGI(php),tomcat(jsp),nginx 作为方向代理服务器存在。
实例:
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8000;
server_name localhost;
location ^~ /ylj/ {
proxy_pass http://127.0.0.1:9001/ylj/;
}
location ^~ /hspt/ {
proxy_pass http://127.0.0.1:8001/hspt/;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
实际使用中. 至少有三个匹配规则定义
1.
# 第一个必选规则
# 直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。
# 这里是直接转发给后端应用服务器了,也可以是一个静态首页
location = / {
proxy_pass http://tomcat:8080/index
}
2.
# 第二个必选规则处理静态文件请求,这是 nginx 作为 http 服务器的强项
# 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
root /webroot/res/;
}
3.
#第三个规则就是通用规则,用来转发动态请求到后端应用服务器
#毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了
location / {
proxy_pass http://tomcat:8080/
}
根据不同访问的 url,分配到不同的负载机上。以下以 location 字段的实际例子来说明:
# “=”符号表示精确匹配,此处表示访问根目录,如 http://localhost/
location = / {
}
# 如上,如访问 http://localhost/login
location = /login {
}
# “^~”表示开头匹配,如访问 http://localhost/static/a.jsp(***);
location ^~ /static/ {
}
# "~"表示正则匹配,且区分大小写
location ~ \.(gif|jpg|png|js|css)$ {
}
# “~*”表示不区分大小写的正则匹配
location ~* \.png$ {
}
# “!~”不匹配且区分大小写
location !~ \.xhtml$ {
}
# “!~*”不匹配,不区分大小写
location !~* \.xhtml$ {
}
# 通用匹配,任何都可以匹配到这里
location / {
}
- 另外有一个比较常用的地方需要注意
# 访问地址是 http://39.108.129.103:8099/bmapi/login
# proxy_pass http://127.0.0.1:9090/;//此处转发到 http://127.0.0.1:9090/login
# proxy_pass http://127.0.0.1:9090;//此处转发到 http://127.0.0.1:9090/bmapi/login
location ^~ /bmapi/ {
proxy_pass xxx.xxx.xxx.xxx;
}
- 最简单的配置说清楚接口定向分发,对于其他配置不做讲解。 比如请求两个URL: 1)、www.000.com/sale 2)、www.000.com/matchmake
#user nobody;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream sale {
server 192.168.1.100:8000 max_fails=2;
}
upstream matchmaker {
server 192.168.1.200:8080 max_fails=2;
}
server {
listen 80;
server_name www.000.com;
location /sale {
root /www
proxy_pass http://sale;
}
location /matchmaker {
root /www
proxy_pass http://matchmaker;
}
}
业精于勤,荒于嬉; 行成于思,毁于随。
pnunu
at 16:35