美文网首页
nginx配置遇到的坑(一)-----proxy_pass

nginx配置遇到的坑(一)-----proxy_pass

作者: Jessiewu_e94b | 来源:发表于2020-03-04 15:43 被阅读0次

    第一种:

    location /proxy/ {

    proxy_pass http://127.0.0.1/;

    }

    代理到URL:http://127.0.0.1/test.php

    第二种(相对于第一种,最后少一个 / )

    location /proxy/ {

    proxy_pass http://127.0.0.1;

    }

    代理到URL:http://127.0.0.1/proxy/test.php

    第三种:

    location /proxy/ {

    proxy_pass http://127.0.0.1/aaa/;

    }

    代理到URL:http://127.0.0.1/aaa/test.php

    第四种(相对于第三种,最后少一个 / )

    location /proxy/ {

    proxy_pass http://127.0.0.1/aaa;

    }

    代理到URL:http://127.0.0.1/aaa/proxy/test.php

    # 当location为正则表达式时,proxy_pass 不能包含URI部分。本例中包含了"/"

    location ~ /testd {

    proxy_pass http://127.0.0.1:8801/;  # 记住,location为正则表达式时,不能这样写!!!

        }

    相关文章

      网友评论

          本文标题:nginx配置遇到的坑(一)-----proxy_pass

          本文链接:https://www.haomeiwen.com/subject/dczvlhtx.html