码迷,mamicode.com
首页 > 其他好文 > 详细

nginx记录日志时记录服务器响应的内容

时间:2015-09-09 18:58:51      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

目前的 nginx 是不支持输出 response 报文体的 使用body_filter_by_lua来分配请求报文体给一个nginx变量。下面是一个示例

worker_processes 1;
error_log logs/error.log;
events {
 worker_connections 1024;
}
http {
 log_format log_req_resp ‘$remote_addr - $remote_user [$time_local] ‘
 ‘"$request"$status $body_bytes_sent ‘
 ‘"$http_referer""$http_user_agent"$request_time req_body:"$request_body"resp_body:"$resp_body"‘;

 server {
 listen 8082;
 access_log logs/access.log log_req_resp;

 lua_need_request_body on;

 set $resp_body"";
 body_filter_by_lua ‘
 local resp_body = string.sub(ngx.arg[1], 1, 1000)
 ngx.ctx.buffered = (ngx.ctx.buffered or"") .. resp_body
 if ngx.arg[2] then
 ngx.var.resp_body = ngx.ctx.buffered
end
‘;

 location / {
 echo"Hello World!";
}
}
}

 

原文地址:http://www.thinksaas.cn/group/topic/347828/

nginx记录日志时记录服务器响应的内容

标签:

原文地址:http://www.cnblogs.com/tm2015/p/4795535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!