Nginx快速建立IP查询接口
Posted 小六
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx快速建立IP查询接口相关的知识,希望对你有一定的参考价值。
location /ip { default_type text/plain; return 200 $remote_addr; }
location /json_ip {
default_type application/json;
return 200 "{"ip":"$remote_addr"}";
}
以上是关于Nginx快速建立IP查询接口的主要内容,如果未能解决你的问题,请参考以下文章
python分析apache和nginx日志文件输出访客ip列表的代码
sql [SQL查询片段]用于在命令行或通过R和其他工具使用SQL的快速代码段#tags:sql,R,text processing,命令li