### :-: HTTP日志详解 | 参数 | 说明 |例子 | | --- | --- | --- | | $remote_addr | 请求IP | 127.0.0.1 | | $remote_user | 请求用户 | | | $time_local|请求时间|21/Feb/2019:11:50:06 +0800| | $request|请求信息|GET /log HTTP/1.1| | $request_uri|请求URI|/log| | $request_method|请求方法|GET/POST| | $host|域名或IP部分|www.baidu.com| | $status |状态码|200 | | $body_bytes_sent | 请求|0 | | $http_referer | 来源 | http://www.xxx.com/ | | $http_user_agent | 请求UA | (UA,不用解释) | | $http_x_forwarded_for | 附在头部的IP|使用头部把IP传过来 | | $request_id| 请求ID,内置变量|410a47a325e1aca0c30d3fb3a65bc201 | ### :-: Nginx特有 | 参数 | 说明 |例子 | | --- | --- | --- | | $document_root |项目根目录| /data/www/root | | $document_uri |脚本名称| /log.html | | $fastcgi_script_name |脚本名称| /nginx.html | | $fastcgi_path_info | 暂无说明 | | | $server_protocol | 协议 | HTTP/1.1 | | $scheme | 协议 | http | | $server_name | 服务器名称 | | | $server_port | 服务器端口 | 80 | | $server_addr | 服务器地址 | 127.0.0.1 | | $remote_port | 客户端口 | 65535 |