/etc/logrotate.d/apache2 - Debian GNU/Linux 11 (bullseye)

This is the default example configuration of apache2 provided by Apache. This config file was generated by Apache running on Debian 11.

It is located under: /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
}

    
  

Config Details

Location
/etc/logrotate.d/apache2
Operating system
Debian GNU/Linux 11 (bullseye)
Length
20 lines
MD5 checksum
ab347819cceccf236cfe769a13b89d2a

Usage

Download the raw file with wget or curl

Wget

wget -O apache2.example http://exampleconfig.com/static/raw/apache/debian11/etc/logrotate.d/apache2

cURL

curl http://exampleconfig.com/static/raw/apache/debian11/etc/logrotate.d/apache2 > apache2.example