Get the default configuration file apache2 for Apache, optimized for Debian GNU/Linux 9 (stretch). 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/cron.daily/apache2.
For more configurations and setup guides, visit our related files section to further customize your system.
#!/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}
Download the raw file with wget or curl
wget -O apache2.example https://exampleconfig.com/static/raw/apache/debian9/etc/cron.daily/apache2
curl https://exampleconfig.com/static/raw/apache/debian9/etc/cron.daily/apache2 > apache2.example
Other config files you might find useful