博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx记录客户端POST过来的具体信息
阅读量:6995 次
发布时间:2019-06-27

本文共 309 字,大约阅读时间需要 1 分钟。

vim nginx/config/nginx.config

$request_body这个变量值就是POST数据

 

log_format main '$remote_addr - $remote_user [$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

'"$http_user_agent" $http_x_forwarded_for $request_body';

 

access_log logs/nginx-80 main;

转载于:https://www.cnblogs.com/linn/p/4517757.html

你可能感兴趣的文章