Apache apache2 configuration example for Ubuntu 14.04 LTS (Trusty Tahr)

Get the default configuration file apache2 for Apache, optimized for Ubuntu 14.04 LTS (Trusty Tahr). 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 {
	weekly
	missingok
	rotate 52
	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
Ubuntu 14.04 LTS (Trusty Tahr)
Length
20 lines
MD5 checksum
77a860c99020888744696d024b9ad0d6

Usage

Download the raw file with wget or curl

Wget

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

cURL

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