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查询接口的主要内容,如果未能解决你的问题,请参考以下文章