/etc/logrotate.d/apache2 - Debian GNU/Linux 9 (stretch)

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

It is located under: /etc/logrotate.d/apache2

    /var/log/apache2/*.log {
	daily
	missingok
	rotate 14
	compress
	delaycompress
	notifempty
	create 640 root adm
	sharedscripts
	postrotate
                if /etc/init.d/apache2 status > /dev/null ; then \
                    /etc/init.d/apache2 reload > /dev/null; \
                fi;
	endscript
	prerotate
		if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
			run-parts /etc/logrotate.d/httpd-prerotate; \
		fi; \
	endscript
}

    
  

Config Details

Location
/etc/logrotate.d/apache2
Operating system
Debian GNU/Linux 9 (stretch)
Length
20 lines
MD5 checksum
7322a4f050c1e2454249695236a3472c

Usage

Download the raw file with wget or curl

Wget

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

cURL

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