注意: 本站使用nginx proxy
反向代理架设的Https, 所以可能有些参数还是Http的~
变量名 | 结果 | 备注 |
---|---|---|
nginx_version | 1.21.4 | 当前运行的nginx版本号 |
server_port | 8080 | 服务器端口 |
server_addr | 172.17.0.3 | 服务器端地址,需要注意的是:为了避免访问linux系统内核,应将ip地址提前设置在配置文件中 |
server_name | 服务器名 | |
server_protocol | HTTP/1.1 | 服务器的HTTP版本, 通常为 “HTTP/1.0” 或 “HTTP/1.1” |
status | 200 | HTTP响应代码 |
time_iso8601 | 2024-11-21T07:49:07+00:00 | 服务器时间的ISO 8610格式 (1.3.12, 1.2.7) |
time_local | 21/Nov/2024:07:49:07 +0000 | 服务器时间(LOG Format 格式) (1.3.12, 1.2.7) |
document_root | /usr/local/webapp | 当前请求的文档根目录或别名 |
request_filename | /usr/local/webapp/api/dump/path | 当前连接请求的文件路径,由root或alias指令与URI请求生成 |
request_completion | 如果请求成功,值为”OK”,如果请求未完成或者请求不是一个范围请求的最后一部分,则为空 | |
pid | 7 | 工作进程的PID |
msec | 1732175347.585 | 当前的Unix时间戳 (1.3.9, 1.2.6) |
limit_rate | 0 | 用于设置响应的速度限制,详见 limit_rate |
pipe | . | 如果请求来自管道通信,值为“p”,否则为“.” (1.3.12, 1.2.7) |
connection_requests | 1 | TCP连接当前的请求数量 (1.3.8, 1.2.5) |
connection | 42593 | TCP连接的序列号 (1.3.8, 1.2.5) |
realpath_root | /usr/local/webapp | 当前请求的文档根目录或别名的真实路径,会将所有符号连接转换为真实路径 |
变量名 | 结果 | 备注 |
---|---|---|
host | 127.0.0.1 | 优先级如下:HTTP请求行的主机名>”HOST”请求头字段>符合请求的服务器名 |
hostname | a7ca904b16a0 | 主机名 |
remote_port | 35910 | 客户端端口 |
remote_user | 用于HTTP基础认证服务的用户名 | |
request | GET /api/dump/path?a=1&%E4%B8%AD%E6%96%87=%E5%A5%BD%E7%9A%84 HTTP/1.1 | 代表客户端的请求地址 |
remote_addr | 101.200.35.212 | 客户端地址 |
request_body | 客户端的请求主体, 此变量可在location中使用,将请求主体通过proxy_pass, fastcgi_pass, uwsgi_pass, 和 scgi_pass传递给下一级的代理服务器 | |
request_body_file | 将客户端请求主体保存在临时文件中文件处理结束后,此文件需删除如果需要之一开启此功能,需要设置client_body_in_file_only如果将次文件传递给后端的代理服务器,需要禁用request body,即设置proxy_pass_request_body off,fastcgi_pass_request_body off, uwsgi_pass_request_body off, or scgi_pass_request_body off | |
proxy_protocol_addr | 获取代理访问服务器的客户端地址,如果是直接访问,该值为空字符串(1.5.12) | |
http_名称 | http_accept_language -> | 匹配任意请求头字段; 变量名中的后半部分“name”可以替换成任意请求头字段,如在配置文件中需要获取http请求头:“Accept-Language”,那么将“-”替换为下划线,大写字母替换为小写,形如:http_accept_language即可 |
bytes_sent | 4702 | 传输给客户端的字节数 (1.3.8, 1.2.5) |
body_bytes_sent | 4546 | 传输给客户端的字节数,响应头不计算在内;这个变量和Apache的mod_log_config模块中的“%B”参数保持兼容 |
变量名 | 结果 |
---|---|
http_accept | */* |
http_accept_encoding | gzip, br, zstd, deflate |
http_accept_language | |
http_cache_control | |
http_connection | close |
http_cookie | |
http_host | 127.0.0.1 |
http_origin | |
http_referer | |
http_pragma | |
http_upgrade_insecure_requests | |
http_user_agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
http_x_requested_with | |
http_x_forwarded_for | 3.12.73.149 |
http_x_forwarded_proto |
变量名 | 结果 | 备注 |
---|---|---|
scheme | http | 请求使用的Web协议, “http” 或 “https” |
document_uri | /api/dump/path | 同 uri |
request_uri | /api/dump/path?a=1&%E4%B8%AD%E6%96%87=%E5%A5%BD%E7%9A%84 | 这个变量等于包含一些客户端请求参数的原始URI,它无法修改,请查看/api/dump/path更改或重写URI,不包含主机名,例如:”/cnphp/test.php?arg=freemouse” |
uri | /api/dump/path | 请求中的当前URI(不带请求参数,参数位于args),可以不同于浏览器传递的request_uri的值,它可以通过内部重定向,或者使用index指令进行修改,/api/dump/path不包含主机名,如”/foo/bar.html” |
request_method | GET | HTTP请求方法,通常为“GET”或“POST” |
request_time | 0.000 | 处理客户端请求使用的时间 (1.3.9, 1.2.6); 从读取客户端的第一个字节开始计时 |
request_length | 462 | 请求的长度 (包括请求的地址, http请求头和请求主体) (1.3.12, 1.2.7) |
query_string | a=1&%E4%B8%AD%E6%96%87=%E5%A5%BD%E7%9A%84 | 同args |
args | a=1&%E4%B8%AD%E6%96%87=%E5%A5%BD%E7%9A%84 | 请求中的参数值 |
arg_参数名 | arg_a => 1 | 请求中的的参数名,即“?”后面的arg_name=arg_value形式的arg_name |
is_args | ? | 如果请求中有参数,值为“?”,否则为空字符串 |
https | 如果开启了SSL安全模式,值为“on”,否则为空字符串 |