Logrotate Beispiel apache2: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Die Konfiguration für apache2 unter Debian= *cat /etc/logrotate.d/apache2 <pre> /var/log/apache2/*.log { daily missingok rotate 14 compress delaycompres…“)
 
(kein Unterschied)

Aktuelle Version vom 26. März 2025, 19:25 Uhr

Die Konfiguration für apache2 unter Debian

  • cat /etc/logrotate.d/apache2
/var/log/apache2/*.log {
	daily
	missingok
	rotate 14
	compress
	delaycompress
	notifempty
	create 640 root adm
	sharedscripts
	prerotate
		if [ -d /etc/logrotate.d/httpd-prerotate ]; then
			run-parts /etc/logrotate.d/httpd-prerotate
		fi
	endscript
	postrotate
		if pgrep -f ^/usr/sbin/apache2 > /dev/null; then
			invoke-rc.d apache2 reload 2>&1 | logger -t apache2.logrotate
		fi
	endscript
}