如何在PLESK中修改Apache LogFormat?

时间:2012-06-19 13:56:00

标签: apache logging

我想更改日志格式以包含网站主机,但我不知道如何在PLESK中更改它。

1 个答案:

答案 0 :(得分:2)

安装了Plesk的Web服务器使用Plesk配置文件/etc/httpd/conf.d/zz010_psa_httpd.conf中定义的日志记录格式

在查看PLESK论坛上的一些帖子之后,有效的解决方案是在包含plesk配置之后重新定义plesklog格式。

要做到这一点,我必须编辑/etc/httpd/conf/httpd.conf并转到说:

的部分
#
# Load config files from the config directory "/etc/httpd/conf.d".
#
Include conf.d/*.conf

然后添加plesklog的新日志格式:

# Redefine plesk log format
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %{Host}i" plesklog

之后我用:

重新启动了apache
service httpd restart

现在我可以检查我的网站日志是否以新定义的格式保存:

tail -f /var/www/vhosts/<your-domain-here>/statistics/logs/access_log

希望它有所帮助!