Nginx可以跟踪HTTP流量吗?

时间:2017-08-04 04:40:56

标签: http nginx logging

Nginx是否有HTTP有线日志,当启用时,会记录所有进入服务器的HTTP请求以及从服务器出来的响应吗?如果是,我该如何配置?

1 个答案:

答案 0 :(得分:0)

Nginx将访问日志作为ngx_http_log_module的一部分。

来自ngx_http_log_module

的文档
  

ngx_http_log_module模块在指定的位置写入请求日志   格式。请求记录在处理位置的上下文中   结束。

log_format compression '$remote_addr - $remote_user [$time_local] '
                       '"$request" $status $bytes_sent '
                       '"$http_referer" "$http_user_agent" "$gzip_ratio"';

access_log /spool/logs/nginx-access.log compression buffer=32k;