Nginx

正向代理 - 配置

2017-12-05  本文已影响4人  乌鲁木齐001号程序员

1. 概述

对A的访问只能通过B,则A为被代理机器,B为代理机器,B代理的是客户端,B做的代理叫正向代理。

2. 被代理机器 - 配置

location / {
    if ( $http_x_forwarded_for !~* "^116\.62\.103\.228") {
        return 403;
    }
    root   /opt/app/code;
    index  index.html index.htm;
}

3. 代理机器 - 配置

resolver 8.8.8.8;
location / {  
    proxy_pass http://$http_host$request_uri;
}
上一篇 下一篇

猜你喜欢

热点阅读