nginx日志参数定义

 log_format   main  '$remote_addr|$time_local|$request|'
					'$status|$body_bytes_sent|$http_referer|'
                    '$http_x_forwarded_for|'
					'$upstream_addr|$upstream_status|$request_time|$upstream_response_time';
    access_log  logs/access.log  main;
参数 含义
$remote_addr 客户端地址
$time_local 访问时间和时区
$request 请求的URI和HTTP协议
$status HTTP请求状态
$boby_byes_sent 发送client文件内容大小
$http_referer URL跳转来源
$http_x_fotwarded_for 请求端client真实地址
$upstream_addr 后台真正提供服务主机地址
$upstream_status upstream状态
$request_time 整个请求总时间
$upstream_respnse_time 请求中,upstream响应时间
上一篇:nginx正反向代理、负载均衡


下一篇:git fork 的项目更新