From ae9bdf888ec8f6d05796b07565bf48b9e049e020 Mon Sep 17 00:00:00 2001 From: "Michael S. P. Kelley" Date: Wed, 21 Aug 2024 10:38:43 -0400 Subject: [PATCH] Default host is localhost --- sbn_survey_image_service/config/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbn_survey_image_service/config/env.py b/sbn_survey_image_service/config/env.py index 760914e..2cec193 100644 --- a/sbn_survey_image_service/config/env.py +++ b/sbn_survey_image_service/config/env.py @@ -37,7 +37,7 @@ class SBNSISEnvironment: # Gunicorn parameters LIVE_GUNICORN_INSTANCES: int = -1 APP_NAME: str = "sbnsis-service" - API_HOST: str = "0.0.0.0" + API_HOST: str = "127.0.0.1" API_PORT: int = 5000 BASE_HREF: str = "/" IS_DAEMON: str = "TRUE"