🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 常用变量 1. request_time : 处理请求已耗费的时间; 2. request_completion : 请求处理完成返回ok,否则返回空; 3. server_name : 匹配上请求的server_name值; 4. https : 若开启https,则返回on,否则返回空; 5. request_filename : 磁盘文件系统待访问文件的完整路径; 6. document_root : 由URI和root/alias规则生成的文件夹路径; 7. realpath_root : 将document_root中的软连接换成真实路径; 8. limit_rate : 返回响应时的速度上限值; ## 获取HTTP处理变量 ``` location / { return 200 "request_time : $request_time request_completion : $request_completion server_name : $server_name https : $https request_filename : $request_filename document_root : $document_root realpath_root : $realpath_root limit_rate : $limit_rate "; } ``` 结果: ``` request_time : 0.000 request_completion : server_name : website.com https : request_filename : /usr/local/Cellar/nginx/1.19.4/html/index.html document_root : /usr/local/Cellar/nginx/1.19.4/html realpath_root : /usr/local/var/www limit_rate : 0 ```