nginx根据项目名实现内网地址转发

Posted 四海骄阳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx根据项目名实现内网地址转发相关的知识,希望对你有一定的参考价值。

nginx根据访问的项目名进行内网地址转发

以下是nginx的配置信息:

server {
listen 8081;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
}
#匹配以访问的项目名跳转到对应的内网地址
location /huwj {
proxy_pass http://127.0.0.1:8002/huwj;
}
#跳转到test项目
location /test {
proxy_pass http://127.0.0.1:8083/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
---------------------
作者:hu_wen
来源:CSDN
原文:https://blog.csdn.net/hu_wen/article/details/79959430
版权声明:本文为博主原创文章,转载请附上博文链接!




























以上是关于nginx根据项目名实现内网地址转发的主要内容,如果未能解决你的问题,请参考以下文章

使用nginx正向代理实现内网域名转发

医院内外网之间通过网闸交互,通过端口转发加nginx代理实现内网访问外网

Kali的内网变外网

Windows实现内网IPMI端口转发

git远程外网地址变内网怎么破(ssh本地端口转发)

golang爬坑:一个简单的http内网转发