- Refactor domain scripts for Ghost, Gitea, Jellyfin, Metabase, n8n, NocoDB, Open WebUI, OpenClaw, PicoClaw, Plausible, Signoz, Uptime Kuma, and Vaultwarden to utilize a common Caddy setup script. - Introduce `caddy-setup.sh` for managing Caddy configurations and handling app initialization states. - Create `initializing.html` and `unavailable.html` pages to provide user feedback during app deployment and downtime. - Update domain handling logic to ensure seamless transitions between initializing and operational states. - Enhance user experience by providing visual indicators for app status during setup and maintenance.
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
APP_NAME="plausible"
|
|
APP_DIR="/var/excloud/apps"
|
|
APP_UPSTREAM_PORT="${EXC_APP_UPSTREAM_PORT:-8000}"
|
|
|
|
DOMAIN="${1}"
|
|
|
|
if [ -z "${DOMAIN}" ]; then
|
|
echo "Error: URL argument is required. Example:" >&2
|
|
echo "domain.sh sub.example.com" >&2
|
|
exit 1
|
|
fi
|
|
|
|
PLAUSIBLE_DIR="${APP_DIR}/${APP_NAME}"
|
|
ENV_FILE="${PLAUSIBLE_DIR}/.env"
|
|
OVERRIDE_FILE="${PLAUSIBLE_DIR}/compose.override.yml"
|
|
SECRET_KEY_FILE="${PLAUSIBLE_DIR}/.secret_key_base"
|
|
|
|
if [ ! -f "${SECRET_KEY_FILE}" ]; then
|
|
openssl rand -base64 48 > "${SECRET_KEY_FILE}"
|
|
fi
|
|
|
|
SECRET_KEY_BASE="$(tr -d '\n' < "${SECRET_KEY_FILE}")"
|
|
|
|
# Always rewrite .env with current domain
|
|
cat > "${ENV_FILE}" <<EOF
|
|
BASE_URL=https://${DOMAIN}
|
|
SECRET_KEY_BASE=${SECRET_KEY_BASE}
|
|
HTTP_PORT=80
|
|
EOF
|
|
|
|
cat > "${OVERRIDE_FILE}" <<EOF
|
|
services:
|
|
plausible:
|
|
ports:
|
|
- "127.0.0.1:${APP_UPSTREAM_PORT}:80"
|
|
EOF
|
|
|
|
source /var/excloud/scripts/caddy-setup.sh
|
|
|
|
if is_app_ready "$PLAUSIBLE_DIR"; then
|
|
# Restart to pick up new domain from .env
|
|
docker compose -f "${PLAUSIBLE_DIR}/compose.yml" -f "${OVERRIDE_FILE}" up -d
|
|
switch_domain "$DOMAIN" "$APP_UPSTREAM_PORT" "$PLAUSIBLE_DIR"
|
|
else
|
|
setup_initializing_page "$DOMAIN" "$APP_NAME" "$PLAUSIBLE_DIR"
|
|
docker compose -f "${PLAUSIBLE_DIR}/compose.yml" -f "${OVERRIDE_FILE}" up -d
|
|
wait_and_switch_to_proxy "$DOMAIN" "$APP_UPSTREAM_PORT" "$PLAUSIBLE_DIR" &
|
|
fi
|