标签: nginx access-log
我需要在access_log中记录请求/响应大小(正文+标题)。知道如何在nginx中做到这一点? 在apache中,我们可以使用%I ..%O格式。
答案 0 :(得分:1)
log_format combined '$request_length $bytes_sent';
根据文档$request_length包括请求标头的长度,$bytes_sent是发送给客户端以响应上述请求的总字节数。
$request_length
$bytes_sent