如何在linux中修改和自定义apache的错误日志

时间:2017-08-05 13:24:29

标签: linux apache logging httpd.conf

我尝试修改错误日志以显示运行时间。 我在httpd.conf

的LogFormat末尾添加了%T /%D 像这样:

<IfModule log_config_module>
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# NOTE: "combined" and "common" are required by WHM
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%T%D %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %T/%D" combined
# access_log format can be set in WHM under 'Basic cPanel & WHM Setup'
CustomLog logs/access_log combined
</IfModule>
 我重新启动了httpd服务,但没有进行更改。 在Cpanel,它被指定使用组合格式。 有人可以帮帮我吗?

0 个答案:

没有答案