fix: entrypoint
This commit is contained in:
+74
-31
@@ -1,45 +1,88 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
# Docker entrypoint for Nginx + PHP/Laravel
|
||||
set -eu
|
||||
|
||||
SERVER_NAME="${SERVER_NAME:-$(hostname -f 2>/dev/null || hostname)}"
|
||||
# -------- defaults (override via env) --------
|
||||
: "${APP_DIR:=/var/www/html}"
|
||||
: "${NGINX_TEMPLATE:=/etc/nginx/templates/default.conf.template}"
|
||||
: "${NGINX_HTTPD_DIR:=/etc/nginx/http.d}"
|
||||
: "${NGINX_CONF_OUT:=${NGINX_HTTPD_DIR}/default.conf}"
|
||||
: "${HTPASSWD_PATH:=/etc/nginx/htpasswd}"
|
||||
: "${BASIC_AUTH_REALM:=Restricted Content}"
|
||||
: "${SUPERVISOR_CONF:=/etc/supervisor/supervisord.conf}"
|
||||
|
||||
log() { printf '[entrypoint] %s\n' "$*"; }
|
||||
err() { printf '[entrypoint][ERROR] %s\n' "$*" >&2; }
|
||||
die() { err "$*"; exit 1; }
|
||||
need() { command -v "$1" >/dev/null 2>&1 || die "Missing required command: $1"; }
|
||||
|
||||
# required tools
|
||||
need envsubst; need nginx; need php; need supervisord
|
||||
|
||||
# server name
|
||||
SERVER_NAME="${SERVER_NAME:-$(hostname -f 2>/dev/null || hostname 2>/dev/null || echo localhost)}"
|
||||
export SERVER_NAME
|
||||
|
||||
# Prepare BASIC_AUTH_DIRECTIVES
|
||||
if [ "$ENABLE_BASIC_AUTH" = "true" ]; then
|
||||
echo "[entrypoint] Enabling basic authentication..."
|
||||
if [ -f /etc/nginx/htpasswd ]; then
|
||||
BASIC_AUTH_DIRECTIVES=$(cat <<EOF
|
||||
auth_basic "Restricted Content";
|
||||
auth_basic_user_file /etc/nginx/htpasswd;
|
||||
# truthy helper
|
||||
is_truthy() {
|
||||
case "${1:-}" in 1|true|TRUE|yes|YES|on|ON) return 0;; *) return 1;; esac
|
||||
}
|
||||
|
||||
# -------- basic auth directives --------
|
||||
BASIC_AUTH_DIRECTIVES=""
|
||||
if is_truthy "${ENABLE_BASIC_AUTH:-}"; then
|
||||
log "Enabling basic authentication"
|
||||
[ -f "$HTPASSWD_PATH" ] || die "htpasswd not found: $HTPASSWD_PATH"
|
||||
BASIC_AUTH_DIRECTIVES=$(cat <<'EOF'
|
||||
auth_basic "__REALM__";
|
||||
auth_basic_user_file __HTPASSWD__;
|
||||
EOF
|
||||
)
|
||||
else
|
||||
echo "[entrypoint] ERROR: htpasswd file not found at /etc/nginx/htpasswd" >&2
|
||||
exit 1
|
||||
fi
|
||||
)
|
||||
# safe placeholder substitution
|
||||
esc() { printf '%s' "$1" | sed 's/[&/\]/\\&/g'; }
|
||||
BASIC_AUTH_DIRECTIVES=$(printf '%s' "$BASIC_AUTH_DIRECTIVES" \
|
||||
| sed "s|__REALM__|$(esc "$BASIC_AUTH_REALM")|g" \
|
||||
| sed "s|__HTPASSWD__|$(esc "$HTPASSWD_PATH")|g")
|
||||
else
|
||||
echo "[entrypoint] Basic authentication is disabled."
|
||||
BASIC_AUTH_DIRECTIVES=""
|
||||
log "Basic authentication is disabled"
|
||||
fi
|
||||
export BASIC_AUTH_DIRECTIVES
|
||||
|
||||
# Render the NGINX configuration
|
||||
if [ -f /etc/nginx/templates/default.conf.template ]; then
|
||||
envsubst '$SERVER_NAME,$BASIC_AUTH_DIRECTIVES' < /etc/nginx/templates/default.conf.template > /etc/nginx/http.d/default.conf
|
||||
# -------- render nginx config (atomic) --------
|
||||
[ -f "$NGINX_TEMPLATE" ] || die "Missing template: $NGINX_TEMPLATE"
|
||||
[ -d "$NGINX_HTTPD_DIR" ] || die "Missing nginx conf dir: $NGINX_HTTPD_DIR"
|
||||
|
||||
tmpconf="$(mktemp "${NGINX_CONF_OUT}.XXXXXX")"
|
||||
envsubst '$SERVER_NAME,$BASIC_AUTH_DIRECTIVES' <"$NGINX_TEMPLATE" >"$tmpconf" \
|
||||
|| die "envsubst failed"
|
||||
|
||||
mv -f "$tmpconf" "$NGINX_CONF_OUT"
|
||||
log "Wrote nginx config -> $NGINX_CONF_OUT"
|
||||
|
||||
# final sanity test against active config tree
|
||||
nginx -t || die "nginx config test failed after install"
|
||||
|
||||
# -------- Laravel cache clears (best-effort) --------
|
||||
if [ -f "$APP_DIR/artisan" ]; then
|
||||
log "Clearing Laravel caches"
|
||||
( cd "$APP_DIR" && php artisan config:clear || log "config:clear failed (continuing)" )
|
||||
( cd "$APP_DIR" && php artisan cache:clear || log "cache:clear failed (continuing)" )
|
||||
else
|
||||
echo "[entrypoint] ERROR: missing /etc/nginx/templates/default.conf.template" >&2
|
||||
exit 1
|
||||
log "No Laravel app at $APP_DIR; skipping artisan"
|
||||
fi
|
||||
|
||||
# Test nginx configuration
|
||||
if ! nginx -t; then
|
||||
echo "[entrypoint] nginx config test failed" >&2
|
||||
cat /var/log/nginx/error.log || true
|
||||
exit 1
|
||||
# -------- entrypoint behavior --------
|
||||
# If the first arg is an option (starts with -), assume supervisord.
|
||||
if [ "${1:-}" ] && [ "${1#-}" != "$1" ]; then
|
||||
set -- /usr/bin/supervisord -n -c "$SUPERVISOR_CONF" "$@"
|
||||
fi
|
||||
|
||||
# Clear Laravel caches
|
||||
php artisan config:clear
|
||||
php artisan cache:clear
|
||||
# If they provided a command (e.g., sh, bash, php -v), run it.
|
||||
if [ "${1:-}" ] && [ "$1" != "/usr/bin/supervisord" ] && [ "$1" != "supervisord" ]; then
|
||||
log "Executing custom command: $*"
|
||||
exec "$@"
|
||||
fi
|
||||
|
||||
# Start supervisord
|
||||
exec /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf
|
||||
# Default: start supervisord in the foreground (PID 1)
|
||||
log "Starting supervisord"
|
||||
exec /usr/bin/supervisord -n -c "$SUPERVISOR_CONF"
|
||||
|
||||
Reference in New Issue
Block a user