lighttpd/bin/entrypoint-lighttpd.sh
2022-10-10 22:49:31 -04:00

72 lines
2.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
##@Version : 202202020147-git
# @Author : Jason Hempstead
# @Contact : jason@casjaysdev.com
# @License : WTFPL
# @ReadME : docker-entrypoint --help
# @Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
# @Created : Wednesday, Feb 02, 2022 01:47 EST
# @File : docker-entrypoint
# @Description :
# @TODO :
# @Other :
# @Resource :
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
APPNAME="$(basename "$0")"
VERSION="202202020147-git"
USER="${SUDO_USER:-${USER}}"
HOME="${USER_HOME:-${HOME}}"
SRC_DIR="${BASH_SOURCE%/*}"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set bash options
if [[ "$1" == "--debug" ]]; then shift 1 && set -xo pipefail && export SCRIPT_OPTS="--debug" && export _DEBUG="on"; fi
trap 'exitCode=${exitCode:-$?};[ -n "$DOCKER_ENTRYPOINT_TEMP_FILE" ] && [ -f "$DOCKER_ENTRYPOINT_TEMP_FILE" ] && rm -Rf "$DOCKER_ENTRYPOINT_TEMP_FILE" &>/dev/null' EXIT
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HOSTADMIN="${APACHE_HOSTADMIN:-admin@localhost}"
CONFIG="${APACHE_CONF:-/config/server.conf}"
export TZ="${TZ:-America/New_York}"
export HOSTNAME="${HOSTNAME:-casjaysdev-lighttpd}"
[ -n "${TZ}" ] && echo "${TZ}" >/etc/timezone
[ -n "${HOSTNAME}" ] && echo "${HOSTNAME}" >/etc/hostname
[ -n "${HOSTNAME}" ] && echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
[ -f "/usr/share/zoneinfo/${TZ}" ] && ln -sf "/usr/share/zoneinfo/${TZ}" "/etc/localtime"
if [ -f "/config/lighttpd.conf" ]; then
cp -Rf "/config/lighttpd.conf" "/etc/lighttpd/lighttpd.conf"
else
mkdir -p "/config/"
cp -Rf "/etc/lighttpd/lighttpd.conf" "/config/lighttpd.conf"
fi
if [ ! -d "/data/htdocs/www" ] || [ ! -f "/htdocs/.docker_complete" ]; then
[ -f "/htdocs/.docker_complete" ] || cp -Rf "/usr/local/share/template-files/data/htdocs/www/." "/data/htdocs/www/"
touch "/htdocs/.docker_complete"
fi
echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
case "$1" in
healthcheck)
if curl -q -LSsf -o /dev/null -s -w "200" "http://localhost/server-health"; then
echo "OK"
exit 0
else
echo "FAIL"
exit 10
fi
;;
bash | shell | sh)
exec /bin/bash -l
;;
*)
exec lighttpd -f /config/lighttpd.conf -D
;;
esac