美文网首页
Nginx-映射站点

Nginx-映射站点

作者: 33d31a1032df | 来源:发表于2016-12-11 19:52 被阅读14次

    1. 正向代理

    location /test {
      proxy_pass  http://localhost:8080/test;
    }
    

    Nginx会把请求转发到Proxy,Proxy直接返回数据到请求方

    2. 反向代理

    location /test {
      proxy_pass  http://localhost:8080/test;
      proxy_set_header  Host  $host;
      proxy_set_header  X-Real-IP  $remote_addr;
      proxy_set_header  X-Forwarded-For  $proxy_add_x_forwarded_for;
    }
    

    Nginx会向Proxy请求数据,然后再把数据返回到请求方

    完整示例:GitHub
    PS:本文使用的是nginx-1.10.2

    相关文章

      网友评论

          本文标题:Nginx-映射站点

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