mirror of
https://github.com/casjaysdevdocker/squidguard
synced 2025-01-18 18:34:29 -05:00
84 lines
2.4 KiB
Bash
Executable File
84 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SQUID_USER="${SQUID_USER:-root}"
|
|
SQUID_LOG_DIR="${SQUID_LOG_DIR:-/data/log/squid}"
|
|
SQUID_CACHE_DIR="${SQUID_CACHE_DIR:-/data/cache/squid}"
|
|
export HOSTNAME="${HOSTNAME:-$(hostname -f)}"
|
|
|
|
__init() {
|
|
mkdir -p "/config" "/data"
|
|
|
|
for dir in apache2 e2guardian squid squidguard; do
|
|
if [ -f "/usr/local/share/squidFiles/$dir" ]; then
|
|
cp -Rf "/usr/local/share/squidFiles/$dir" "/config/$dir"
|
|
elif [ -d "/usr/local/share/squidFiles/$dir" ]; then
|
|
cp -Rf "/usr/local/share/squidFiles/$dir/." "/config/$dir/"
|
|
else
|
|
cp -Rf "/usr/local/share/squidFiles/data/." "/data/"
|
|
cp -Rf "usr/local/share/squidFiles/config/." "/config/"
|
|
fi
|
|
done
|
|
|
|
mkdir -p "${SQUID_LOG_DIR}" "${SQUID_CACHE_DIR}" "/data/log/apache2"
|
|
mkdir -p "/data/log/squidguard" "/data/log/e2guardian" "/data/squidguard/db"
|
|
chown -Rf ${SQUID_USER}:${SQUID_USER} "/config" "/data"
|
|
chmod -Rf 777 "${SQUID_LOG_DIR}" "${SQUID_CACHE_DIR}"
|
|
|
|
cp -Rf "/config/." "/etc/"
|
|
|
|
if [ "${UPDATE_BLACKLIST_URL}" != "" ]; then
|
|
sudo wget -O /tmp/backlist.tar.gz ${UPDATE_BLACKLIST_URL} &&
|
|
tar -xzf /tmp/backlist.tar.gz -C "/data/squidguard/db" &&
|
|
rm -Rf /tmp/backlist.tar.gz &&
|
|
chown -Rf ${SQUID_USER}:${SQUID_USER} "/data/squidguard/db"
|
|
fi
|
|
|
|
if [ "${WPAD_IP}" != "" ]; then
|
|
sed 's/{{WPAD_IP}}/'"${WPAD_IP}"'/' -i "/data/htdocs/www/wpad.dat"
|
|
sed 's/{{WPAD_NOPROXY_NET}}/'"${WPAD_NOPROXY_NET}"'/' -i "/data/htdocs/www/wpad.dat"
|
|
sed 's/{{WPAD_NOPROXY_MASK}}/'"${WPAD_NOPROXY_MASK}"'/' -i "/data/htdocs/www/wpad.dat"
|
|
fi
|
|
|
|
# allow arguments to be passed to squid
|
|
if [[ ${1:0:1} = '-' ]]; then
|
|
EXTRA_ARGS="$@"
|
|
set --
|
|
elif [[ ${1} == squid || ${1} == $(which squid) ]]; then
|
|
EXTRA_ARGS="${@:2}"
|
|
set --
|
|
fi
|
|
}
|
|
|
|
case "$1" in
|
|
|
|
healthcheck)
|
|
squidclient -h localhost cache_object://localhost/counters
|
|
exit $?
|
|
;;
|
|
|
|
update)
|
|
shift 1
|
|
/usr/local/bin/create-blocklists.sh
|
|
exit $?
|
|
;;
|
|
|
|
bash | shell | sh)
|
|
exec /bin/bash -l
|
|
;;
|
|
|
|
*)
|
|
__init "$@"
|
|
if [[ ! -d ${SQUID_CACHE_DIR}/00 ]]; then
|
|
echo "Initializing cache..."
|
|
$(which squid) -N -f "/config/squid/squid.conf" -z
|
|
fi
|
|
|
|
echo "Starting apache web server..."
|
|
[ -f "/var/run/apache2.pid" ] && rm -R /var/run/apache2.pid
|
|
apache2 -D FOREGROUND -f "/config/apache2/apache2.conf" &
|
|
|
|
echo "Starting squid..."
|
|
exec $(which squid) -f "/config/squid/squid.conf" -NYCd 1 ${EXTRA_ARGS}
|
|
;;
|
|
esac
|