本文共 529 字,大约阅读时间需要 1 分钟。
默认的日志格式:
'$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"';由于默认的日志格式不能满足日常查看需要求,对其进行调整
修改后的日志格式:
'$remote_addr - $remote_user [$time_local] $request_time "$request" $http_host '
'$status $body_bytes_sent $upstream_response_time $upstream_addr $upstream_status "$http_referer" $request_body' '"$http_user_agent" "$http_x_forwarded_for" ';本文转自激情燃烧的岁月博客51CTO博客,原文链接http://blog.51cto.com/liuzhengwei521/1975147如需转载请自行联系原作者
weilovepan520