/etc/cron.daily/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/cron.daily/apache2

    #!/bin/sh

# run htcacheclean

set -e
set -u

[ -e /usr/sbin/htcacheclean ] || exit 0
[ -e /etc/default/apache2 ]   || exit 0


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

. /etc/default/apache2

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

[ "$HTCACHECLEAN_RUN" = "yes"	] || 
( [ "$HTCACHECLEAN_RUN" = "auto" ] && \
  [ -e /etc/apache2/mods-enabled/disk_cache.load ] )  || exit 0

/usr/sbin/htcacheclean  ${HTCACHECLEAN_OPTIONS}	\
			-p${HTCACHECLEAN_PATH}	\
			-l${HTCACHECLEAN_SIZE}


    
  

Config Details

Location
/etc/cron.daily/apache2
Operating system
Ubuntu 12.04 LTS (Precise Pangolin)
Length
30 lines
MD5 checksum
c3367e905394bfbd009fd44b223b3735

Usage

Download the raw file with wget or curl

Wget

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

cURL

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