/etc/logrotate.d/apache2 - Ubuntu 12.04 LTS (Precise Pangolin)

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

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

    /var/log/apache2/*.log {
	weekly
	missingok
	rotate 52
	compress
	delaycompress
	notifempty
	create 640 root adm
	sharedscripts
	postrotate
		/etc/init.d/apache2 reload > /dev/null
	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
Ubuntu 12.04 LTS (Precise Pangolin)
Length
18 lines
MD5 checksum
c628f4befcafbd72c75667605a93cdbe

Usage

Download the raw file with wget or curl

Wget

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

cURL

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