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

nginx相关服务实践

时间:2020-07-27 13:55:16      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:文件   add   span   oca   相关   ext   text   nginx   用户   

1. 实现客户端IP地址获取接口

普通版本

Nginx 的配置文件中提供了一个变量 $remote_addr 用来获取用户访问本实例时的 IP 地址,我们只要将这个变量的值返回给用户就行了(没错,就是这么简单!):

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

这里使用 default_type text/plain 来向浏览器表明我们返回的值是一个纯文本,从而能够被浏览器直接显示出来。

JSON 版本

同样依赖于 $remote_addr 这个变量,我们可以将返回值稍微修饰一下,实现一个返回 JSON 数据的 API:

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

配置文件中的 default_type application/json 向浏览器表明我们的返回的值是 JSON 数据。

 

nginx相关服务实践

标签:文件   add   span   oca   相关   ext   text   nginx   用户   

原文地址:https://www.cnblogs.com/xingxia/p/nginx_services.html

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