标签:文件 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
来向浏览器表明我们返回的值是一个纯文本,从而能够被浏览器直接显示出来。
同样依赖于 $remote_addr
这个变量,我们可以将返回值稍微修饰一下,实现一个返回 JSON 数据的 API:
location /json { default_type application/json; return 200 "{\"ip\":\"$remote_addr\"}"; }
配置文件中的 default_type application/json
向浏览器表明我们的返回的值是 JSON 数据。
标签:文件 add span oca 相关 ext text nginx 用户
原文地址:https://www.cnblogs.com/xingxia/p/nginx_services.html