Get the default configuration file apache2 for Apache, optimized for Debian GNU/Linux 11 (bullseye). This example configuration ensures optimal compatibility and performance for Apache, making it easy to set up and adjust to meet your needs.
Find and download the configuration file here: /etc/logrotate.d/apache2.
For more configurations and setup guides, visit our related files section to further customize your system.
/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
}
Download the raw file with wget or curl
wget -O apache2.example https://exampleconfig.com/static/raw/apache/debian11/etc/logrotate.d/apache2
curl https://exampleconfig.com/static/raw/apache/debian11/etc/logrotate.d/apache2 > apache2.example
Other config files you might find useful