/etc/cron.daily/apache2 - Ubuntu 18.04 LTS (Bionic Beaver)

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

It is located under: /etc/cron.daily/apache2

    #!/bin/sh

# run htcacheclean if set to 'cron' mode

set -e
set -u

type htcacheclean > /dev/null 2>&1 || exit 0
[ -e /etc/default/apache-htcacheclean ] || exit 0


# edit /etc/default/apache-htcacheclean to change this
HTCACHECLEAN_MODE=daemon
HTCACHECLEAN_RUN=auto
HTCACHECLEAN_SIZE=300M
HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
HTCACHECLEAN_OPTIONS=""

. /etc/default/apache-htcacheclean

[ "$HTCACHECLEAN_MODE" = "cron" ] || exit 0

htcacheclean ${HTCACHECLEAN_OPTIONS}	\
		-p${HTCACHECLEAN_PATH}	\
		-l${HTCACHECLEAN_SIZE}

    
  

Config Details

Location
/etc/cron.daily/apache2
Operating system
Ubuntu 18.04 LTS (Bionic Beaver)
Length
25 lines
MD5 checksum
c788ffaa4c682c91e6a1cd7f53840d62

Usage

Download the raw file with wget or curl

Wget

wget -O apache2.example http://exampleconfig.com/static/raw/apache/ubuntu18.04/etc/cron.daily/apache2

cURL

curl http://exampleconfig.com/static/raw/apache/ubuntu18.04/etc/cron.daily/apache2 > apache2.example