有没有办法在服务器重启时在 access.log 中添加一些条目?
error.log 使其非常清晰(子:启动工作线程等),但我希望它也在 access.log 中可见
谢谢!
答案1
你可以简单地使用同一个文件作为你的访问日志和你的ErrorLog
,它们不必是不同的文件。例如:
# httpd.conf
...
ErrorLog logs/access_log
CustomLog logs/access_log combined
有没有办法在服务器重启时在 access.log 中添加一些条目?
error.log 使其非常清晰(子:启动工作线程等),但我希望它也在 access.log 中可见
谢谢!
你可以简单地使用同一个文件作为你的访问日志和你的ErrorLog
,它们不必是不同的文件。例如:
# httpd.conf
...
ErrorLog logs/access_log
CustomLog logs/access_log combined