Bir web sunucusunda kurulmuş birçok sanal ana bilgisayarım var, her birinin kendi hatası ve erişim günlüğü var. İlgili satırları httpd.conf
şöyle:
ErrorLog /var/log/httpd-error.log
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
CustomLog /var/log/httpd-access.log combined
NameVirtualHost *:80
<VirtualHost *:80>
ServerName myhost.com
ServerAlias www.myhost.com
DocumentRoot /var/www/myhost.com/htdocs
ErrorLog /var/www/myhost.com/log/error.log
CustomLog /var/www/myhost.com/log/access.log combined
</VirtualHost>
# ... many more VirtualHosts
Şu anda, /var/log/httpd-error.log dosyasında bazı rasgele hatalar alıyorum, ancak /var/log/httpd-access.log dosyasında hiçbir şey almıyorum. TÜM erişim ve hataların paylaşılan bir günlük dosyasına kopyalanması mümkün mü? Her bir VirtualHost'a yeni girişler eklemeden bunu yapmak mümkün müdür?