From 068335f43c429ba2cc18ac770c50dcc2963af961 Mon Sep 17 00:00:00 2001 From: Keysat Date: Sat, 9 May 2026 19:52:18 -0500 Subject: [PATCH] Repoint deploy script defaults from satsflows.com to keysat.xyz Both REGISTRY_URL (registry index re-index endpoint) and REGISTRY_PUBLIC_URL (the URL embedded in the registry entry pointing at the .s9pk download) now default to keysat.xyz. The hosts route to the same data via StarTunnel; this just stops embedding the legacy satsflows.com hostname in the registered package metadata. --- bin/deploy.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/deploy.sh b/bin/deploy.sh index 7297e26..615efc5 100755 --- a/bin/deploy.sh +++ b/bin/deploy.sh @@ -14,9 +14,9 @@ # # Optional config (sensible defaults): # FILEBROWSER_PATH — path on FileBrowser to overwrite. Default: /websites/packages/recap_x86_64.s9pk -# REGISTRY_URL — registry JSON-RPC URL. Default: https://registry.satsflows.com +# REGISTRY_URL — registry JSON-RPC URL. Default: https://registry.keysat.xyz # REGISTRY_PUBLIC_URL — public .s9pk URL registered with start-cli. -# Default: https://files.satsflows.com/recap_x86_64.s9pk +# Default: https://files.keysat.xyz/recap_x86_64.s9pk set -euo pipefail @@ -36,8 +36,8 @@ fi : "${START9_SERVER:?START9_SERVER is required (e.g. https://immense-voyage.local:62185)}" FILEBROWSER_PATH="${FILEBROWSER_PATH:-/websites/packages/recap_x86_64.s9pk}" -REGISTRY_URL="${REGISTRY_URL:-https://registry.satsflows.com}" -REGISTRY_PUBLIC_URL="${REGISTRY_PUBLIC_URL:-https://files.satsflows.com/recap_x86_64.s9pk}" +REGISTRY_URL="${REGISTRY_URL:-https://registry.keysat.xyz}" +REGISTRY_PUBLIC_URL="${REGISTRY_PUBLIC_URL:-https://files.keysat.xyz/recap_x86_64.s9pk}" S9PK_FILE="$PROJECT_ROOT/recap_x86_64.s9pk"