From f8fa802558ea99f7d0a4148907cc5710ee8b58da Mon Sep 17 00:00:00 2001 From: David Garvey Date: Tue, 17 Sep 2024 11:16:48 +0200 Subject: [PATCH] display 'not configured' when no config is present --- deployments/tyk/bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deployments/tyk/bootstrap.sh b/deployments/tyk/bootstrap.sh index 1a51afb5..257a477f 100755 --- a/deployments/tyk/bootstrap.sh +++ b/deployments/tyk/bootstrap.sh @@ -542,6 +542,7 @@ ngrok_available=false if ! grep -q "NGROK_AUTHTOKEN=" .env; then log_message "Ngrok auth token is not set, so Ngrok will not be available" log_message "To enable Ngrok, set the NGROK_AUTHTOKEN value in the Tyk Demo .env file" + ngrok_public_url="not configured" else log_message "Getting Ngrok public URL for Tyk Gateway" ngrok_dashboard_url="http://localhost:4040"