Nginx 配置日志打印-HTTP报文
Nginx 配置日志打印--HTTP报文
http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent $request_body "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; } 以上为全局配置,打印所有请求的报文,与可按如下配置,只获取某个请求路径下的HTTP报文: http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent $request_body "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; } server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location /mypath { access_log logs/access.log main; } }