From e3edc3491d65627c96e3e8ef3a6152a49126f837 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Fri, 26 Jun 2026 17:25:00 +0530 Subject: [PATCH] chore: fix messaging for setup_remote script --- scripts/setup_remote.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/setup_remote.sh b/scripts/setup_remote.sh index 624b46a4..faed9b06 100755 --- a/scripts/setup_remote.sh +++ b/scripts/setup_remote.sh @@ -35,9 +35,9 @@ echo "║ Automated HTTPS deployment with TURN server ║" echo "╚══════════════════════════════════════════════════════════════╝" echo -e "${NC}" -# Get the public IP address (skip prompt if SERVER_IP is already set) +# Get the server IP address (skip prompt if SERVER_IP is already set) if [[ -z "${SERVER_IP:-}" ]]; then - echo -e "${YELLOW}Enter your server's public IP address:${NC}" + echo -e "${YELLOW}Enter your server's IP address:${NC}" read -p "> " SERVER_IP fi @@ -62,9 +62,9 @@ LETSENCRYPT_EMAIL="${LETSENCRYPT_EMAIL:-}" if [[ "$CERT_MODE" == "auto" ]]; then if dograh_is_local_ipv4 "$SERVER_IP"; then CERT_MODE="self-signed" - dograh_warn "SERVER_IP $SERVER_IP is a private/reserved address — Let's Encrypt cannot validate it." - dograh_warn "Falling back to a self-signed certificate. For a trusted cert deploy on a public IP," - dograh_warn "or use a domain you own (https://docs.dograh.com/deployment/custom-domain)." + dograh_warn "$SERVER_IP is a private IP — using a self-signed certificate." + dograh_warn "For a trusted cert, deploy on a public IP or a domain you own" + dograh_warn "(https://docs.dograh.com/deployment/custom-domain)." elif [[ $EUID -ne 0 ]]; then CERT_MODE="self-signed" dograh_warn "Not running as root — skipping automatic Let's Encrypt setup."