ZFBG

nginx 日志格式

log_format 有个默认的日志格式:

log_format combined    \'$remote_addr - $remote_user [$time_local]\'
             \' "$request" $status $body_bytes_sent \'
               \' "$http_referer" $http_user_agent"\';
iamhe

** nginx 默认调用 combined 格式来记录日志,即默认调用:(默认记录在access.log文件中)**

access_log logs/access.log combined;

nginx允许自定义日志格式,例如:

log_format main    \'$remote_addr - $remote_user [$time_local] "$http_host" "$request"\'                     
           \'$status $body_bytes_sent "$http_referer" \'          \'"$http_user_agent" $http_x_forwarded_for $request_time\';

以上是自定义了日志格式:main(main名称可以自定义)

要想使其生效,就必须用access_log指定调用:

access_log logs/xx.log main;

iamge
否则,nginx仍然会去调用combined格式来记录日志。

更多日志的介绍

分类:

技术点:

相关文章:

  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2021-11-19
  • 2022-03-09
  • 2021-11-19
  • 2021-11-19
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2021-09-16
  • 2021-11-19
相关资源
相似解决方案