Nginx_反向代理配置2_location 指令说明

目的:

  • Nginx监听80端口,访问 www.test.com/edu ,转发到端口为8002的tomcat中,访问 www.test.com/vod 转发到端口为8001的tomcat中。

Nginx的server配置如下

server {
        listen       80;
        server_name  www.qrcode.com;
		location ~ /edu/ {
			proxy_pass   http://127.0.0.1:8002;
        }
		location ~ /vod/ {
			proxy_pass   http://127.0.0.1:8001;
        }
	}

location 指令说明

该指令用于匹配 URL。

语法如下:

location [ = | ~ | ~* | ^~] uri {

}

1、= :用于不含正则表达式的 uri 前,要求请求字符串与 uri 严格匹配,如果匹配 成功,就停止继续向下搜索并立即处理该请求。
2、~:用于表示 uri 包含正则表达式,并且区分大小写。
3、~*:用于表示 uri 包含正则表达式,并且不区分大小写。
4、^~:用于不含正则表达式的 uri 前,要求 Nginx 服务器找到标识 uri 和请求字 符串匹配度最高的 location 后,立即使用此 location 处理请求,而不再使用 location 块中的正则 uri 和请求字符串做匹配。
注意:如果 uri 包含正则表达式,则必须要有 ~ 或者 ~* 标识。

你可能感兴趣的:(Nginx,Nginx,反向代理,指令)