diff --git a/signoz/domain-signoz.sh b/signoz/domain.sh similarity index 95% rename from signoz/domain-signoz.sh rename to signoz/domain.sh index 453d19f..b22f4c9 100644 --- a/signoz/domain-signoz.sh +++ b/signoz/domain.sh @@ -8,7 +8,7 @@ DOMAIN="${1}" if [ -z "$DOMAIN" ]; then echo "Error: URL argument is required. Example:" >&2 - echo "domain-change.sh sub.example.com" >&2 + echo "domain.sh sub.example.com" >&2 exit 1 fi @@ -63,4 +63,4 @@ EOF echo "Caddyfile updated" docker compose -f $COMPOSE_FILE up -d --remove-orphans -systemctl reload caddy +systemctl reload caddy \ No newline at end of file diff --git a/signoz/install-signoz.sh b/signoz/install.sh similarity index 96% rename from signoz/install-signoz.sh rename to signoz/install.sh index a4fc35d..bb0fd0b 100644 --- a/signoz/install-signoz.sh +++ b/signoz/install.sh @@ -11,7 +11,7 @@ DOMAIN="${1}" if [ -z "$DOMAIN" ]; then echo "Error: URL argument is required. Example:" >&2 - echo "install-signoz.sh sub.example.com" >&2 + echo "install.sh sub.example.com" >&2 exit 1 fi @@ -76,4 +76,4 @@ set_env "SIGNOZ_TOKENIZER_JWT_SECRET" "${JWT_SECRET}" ".services.signoz.environm # set_env "SIGNOZ_SQLSTORE_POSTGRES_DSN" "${POSTGRES_DSN}" ".services.signoz.environment" -bash "${SCRIPT_DIR}/domain-signoz.sh" "${DOMAIN}" +bash "${SCRIPT_DIR}/domain.sh" "${DOMAIN}" \ No newline at end of file