location /aaa {
set $allow_ip '';
if ( $remote_addr ~ 192.168.0.220){set $allow_ip 1;}
if ( $allow_ip != 1) {
return 503;
}
proxy_pass http://192.168.0.3:1080/path;
}
当我的location配置如上时,我的0.3web服务器的访问日志是:
GET /path/aaa HTTP/1.0
而同样的配置文件,我在nginx-1.12.1上配置,0.3收到的访问是:
GET /path HTTP/1.0