Apache apache2 configuration example for Alpine Linux v3

Get the default configuration file apache2 for Apache, optimized for Alpine Linux v3. 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 {
    missingok
    notifempty
    sharedscripts
    delaycompress
    postrotate
        /etc/init.d/apache2 --quiet --ifstarted reload > /dev/null 2>/dev/null || true
    endscript
}


    
  

Config Details

Location
/etc/logrotate.d/apache2
Operating system
Alpine Linux v3
Length
10 lines
MD5 checksum
8519af87c57b50441866ad4216e4d663

Usage

Download the raw file with wget or curl

Wget

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

cURL

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