nginx的logformat各个参数代表什么
时间: 2023-06-07 10:10:11 浏览: 184
log_format为Nginx设置日志格式1
nginx的logformat中各个参数代表的含义如下:
$remote_addr - 记录客户端IP地址
$remote_user - 记录客户端用户名
$time_local - 记录访问时间与时区
$request - 记录请求的URI和HTTP协议
$status - 记录请求状态
$body_bytes_sent - 记录发送给客户端文件主体内容大小
$http_referer - 记录从哪个页面链接访问过来的
$http_user_agent - 记录客户端浏览器相关信息
$ssl_protocol - 记录HTTPS协议版本
$ssl_cipher - 记录AES加密算法的加密密钥长度
阅读全文