117 lines
2.4 KiB
Bash
117 lines
2.4 KiB
Bash
#!/bin/bash
|
|
|
|
echo "[*] Starting bunkerized-nginx ..."
|
|
|
|
# trap SIGTERM and SIGINT
|
|
function trap_exit() {
|
|
echo "[*] Catched stop operation"
|
|
echo "[*] Stopping crond ..."
|
|
pkill -TERM crond
|
|
echo "[*] Stopping nginx ..."
|
|
/usr/sbin/nginx -s stop
|
|
}
|
|
trap "trap_exit" TERM INT QUIT
|
|
|
|
# trap SIGHUP
|
|
function trap_reload() {
|
|
echo "[*] Catched reload operation"
|
|
if [ "$MULTISITE" = "yes" ] && [ "$SWARM_MODE" != "yes" ] ; then
|
|
/opt/entrypoint/certbot.sh
|
|
fi
|
|
if [ -f /tmp/nginx.pid ] ; then
|
|
echo "[*] Reloading nginx ..."
|
|
nginx -s reload
|
|
if [ $? -eq 0 ] ; then
|
|
echo "[*] Reload successfull"
|
|
else
|
|
echo "[!] Reload failed"
|
|
fi
|
|
else
|
|
echo "[!] Ignored reload operation because nginx is not running"
|
|
fi
|
|
}
|
|
trap "trap_reload" HUP
|
|
|
|
# do the configuration magic if needed
|
|
if [ ! -f "/opt/installed" ] ; then
|
|
|
|
echo "[*] Configuring bunkerized-nginx ..."
|
|
|
|
# check permissions
|
|
if [ "$SWARM_MODE" != "yes" ] ; then
|
|
/opt/entrypoint/permissions.sh
|
|
else
|
|
/opt/entrypoint/permissions-swarm.sh
|
|
fi
|
|
if [ "$?" -ne 0 ] ; then
|
|
exit 1
|
|
fi
|
|
|
|
# clamav config
|
|
/opt/entrypoint/clamav.sh
|
|
|
|
# start temp nginx to solve Let's Encrypt challenges if needed
|
|
/opt/entrypoint/nginx-temp.sh
|
|
|
|
# only do config if we are not in swarm mode
|
|
if [ "$SWARM_MODE" != "yes" ] ; then
|
|
# export the variables
|
|
env | grep -E -v "^(HOSTNAME|PWD|PKG_RELEASE|NJS_VERSION|SHLVL|PATH|_|NGINX_VERSION|HOME)=" > "/tmp/variables.env"
|
|
|
|
# call the generator
|
|
/opt/gen/main.py --settings /opt/settings.json --templates /opt/confs --output /etc/nginx --variables /tmp/variables.env
|
|
|
|
# background jobs
|
|
/opt/entrypoint/jobs.sh
|
|
|
|
# certbot
|
|
/opt/entrypoint/certbot.sh
|
|
fi
|
|
|
|
touch /opt/installed
|
|
else
|
|
echo "[*] Skipping configuration process"
|
|
fi
|
|
|
|
# start crond
|
|
crond
|
|
|
|
# wait until config has been generated if we are in swarm mode
|
|
if [ "$SWARM_MODE" = "yes" ] ; then
|
|
echo "[*] Waiting until config has been generated ..."
|
|
while [ ! -f "/etc/nginx/autoconf" ] ; do
|
|
sleep 1
|
|
done
|
|
fi
|
|
|
|
# stop temp config if needed
|
|
if [ -f "/tmp/nginx-temp.pid" ] ; then
|
|
nginx -c /tmp/nginx-temp.conf -s quit
|
|
fi
|
|
|
|
# run nginx
|
|
echo "[*] Running nginx ..."
|
|
nginx &
|
|
pid="$!"
|
|
|
|
# autotest
|
|
if [ "$1" == "test" ] ; then
|
|
sleep 10
|
|
echo -n "autotest" > /www/index.html
|
|
check=$(curl "http://localhost:${HTTP_PORT}" 2> /dev/null)
|
|
if [ "$check" == "autotest" ] ; then
|
|
exit 0
|
|
fi
|
|
exit 1
|
|
fi
|
|
|
|
# wait for nginx
|
|
wait "$pid"
|
|
while [ -f "/tmp/nginx.pid" ] ; do
|
|
wait "$pid"
|
|
done
|
|
|
|
# sigterm trapped
|
|
echo "[*] bunkerized-nginx stopped"
|
|
exit 0
|