码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx快速建立IP查询接口

时间:2020-01-29 18:01:00      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:ddr   接口   ip查询   def   ica   ati   add   default   json   

location /ip {
    default_type text/plain;
    return 200 $remote_addr;
}

location /json_ip {
    default_type application/json;
    return 200 "{\"ip\":\"$remote_addr\"}";
}

Nginx快速建立IP查询接口

标签:ddr   接口   ip查询   def   ica   ati   add   default   json   

原文地址:https://www.cnblogs.com/toumingbai/p/12240614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!