Centos 7,Apache 2.4 记录到 /var/log/message

Centos 7,Apache 2.4 记录到 /var/log/message

我需要帮助配置 Apache 2.4。Centos 7。以前我没有遇到过这个问题,但现在我可以看到所有域的访问日志都写入 /var/log/messages - 但我不想这样做。

我查看了 httpd.conf 和其他文件,没有提到将日志记录到主 syslog 文件。您能帮忙吗?

谢谢

更新 1

按照要求:

示例行:

5月17日 09:50:06 服务器名称 httpd:.*.23 - - [17/May/2017:09:50:04 +0200] "GET /posting.php?mode=post&f=8 HTTP/1.1" 404 12908 "http://www.****.cz/posting.php?mode=post&f=8" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,如 Gecko) Chrome/52.0.2743.116 Safari/537.36"

grep -Ri customlog /etc/httpd/

/etc/httpd/conf/httpd.conf:    CustomLog "logs/access_log" combined
/etc/httpd/conf/vhost.conf:     CustomLog /var/log/httpd/BASE-XX-acces_log combined
/etc/httpd/conf/vhost.conf:     CustomLog /var/log/httpd/BASESSL-XX-acces_log combined
/etc/httpd/conf/vhost.conf:     CustomLog "|$tee -a /www/xxxx.net/logs/apache/acces_log" combined

相关内容