nginx配置不同路径下的转发代理

一、需求

假如,我们需要这样的代理,平时我们运行调试的时候,就在localhost的默认目录下的html里面就行。如果我们请求的路径含有指定的目录的时候,我们需要它去我们指定的域名和端口请求数据,而不是在本地请求。
比如,当请求http://localhost/extService/extService/wens001.do的时候,我们是想他远程访问地址是http://192.168.2.1:8080/extService/wens001.do,而不是在我们本地查找该文件。

二、解决办法1

打开你的nginx配置文件,比如我的地址:nginx-1.17.9\conf\nginx.conf。在原本的location下面添加一个如下代码的location

        location ^~ /extService/ {
            proxy_pass   http://192.168.2.1:8080/extService/;
        }

这样配置之后,后面的对/extService/请求,都会被转发到你配置的域名中去了。

^ 号表示开头匹配,以为我的开头就是根目录,所以,我加了仅仅限制开头的这种限制,防止其他的域名中间有该字符串,也会被转发的错误。

配置完成之后,大致代码如下,仅供参考

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        location ^~ /extService/ {
            proxy_pass   http://192.168.2.1:8080/extService/;
        }

        #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;
        }
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

三、解决办法2
你还可以使用下面的代码,这种,对转发的路径有要求,只能是域名和端口号。

        location ~ /extService/ {
            proxy_pass   http://blog.test:8080;
        }

proxy_pass的路径不能带有路径。它是匹配到该种路径,直接转发。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值