nginx 配置ip查询
以前我一直是用php来做ip查询,后来同事给我发了两句nginx配置就能实现以前的功能,现在推授给大家.
配置如下:
location / {
default_type text/plain;
return 200 "$remote_addr\n";
}
当然你也可以返回json格式的:
location / {
default_type application/json;
return 200 "{\"ip\":\"$remote_addr\"}";
}
ps:
https://www.sunzhongwei.com/nginx-request-ip-returned-directly-to-the-end
http://www.mzh.ren/nginx-return-client-ip.html
评论: