From af56fbedc1d3f54a7d5dc2a03defccb1b0665084 Mon Sep 17 00:00:00 2001 From: enki Date: Wed, 27 Aug 2025 15:55:55 -0700 Subject: [PATCH] Fix install script to pass domain and email to systemd setup --- scripts/install_native.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_native.sh b/scripts/install_native.sh index e0a7711..c7f30a4 100755 --- a/scripts/install_native.sh +++ b/scripts/install_native.sh @@ -304,7 +304,7 @@ if [ "$ENABLE_MONITORING" = true ] && [ "$USE_EXISTING_MONITORING" = false ]; th elif [ "$USE_EXISTING_MONITORING" = true ]; then MONITORING_FLAG="--use-existing-monitoring" fi -./scripts/setup_systemd.sh $MONITORING_FLAG --skip-build +./scripts/setup_systemd.sh $MONITORING_FLAG --skip-build --domain "$DOMAIN" --email "$EMAIL" $([ "$SKIP_SSL" = true ] && echo "--skip-ssl") # Step 4: Configure cache (in-memory LRU - no Redis needed) echo "🧠 Gateway uses in-memory LRU cache (no Redis required)"