Nginx-http_proxy_module模块
Posted YJ.li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx-http_proxy_module模块相关的知识,希望对你有一定的参考价值。
nginx 反向代理之 http_proxy_module 模块
proxy_pass指定属于 ngx_http_proxy_module 模块,此模块可以将请求转发到另一台服务器,在实际的反向代理工作中,会通过 location 功能匹配指定的 URI,然后把接收到的符合匹配 URI 的请求通过 proxy_pass 抛给定义好的 upstream 节点池。
该指令官网地址见:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass
官网 proxy_pass 使用 案例:
1)将匹配 URI 为 name 的请求抛给 http://127.0.0.1/remote/
location /name/ { proxy_pass http://127.0.0.1/remote/; }
2)将匹配 URI 为 some/path 的请求抛给 http://127.0.0.1
location /some/path/ { proxy_pass http://127.0.0.1; }
3)将匹配 URI 为 name 的请求应用指定的 rewrite 规则,然后抛给 http://127.0.0.1
location /name/ { rewrite /name/([^/]+) /users?name=$1 break; proxy_pass http://127.0.0.1; }
http_proxy_module 模块参数说明
Nginx 的代理功能是通过 http_proxy 模块来实现的。默认在安装 Nginx 时已经安装了 http_proxy 模块,因此可直接使用 http_proxy 模块
以上是关于Nginx-http_proxy_module模块的主要内容,如果未能解决你的问题,请参考以下文章
Python 常用模块 -- collections模块,time模块,random模块,os模块,sys模块
python内几种常用内置模块的介绍,包括time模块,datetime模块,random模块,os模块,sys模块,hashlib模块