From f70fadd70c4b2211687cc37e8cbb1ccbfbfecdf6 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Thu, 28 Dec 2023 09:52:30 -0800 Subject: [PATCH] fix: https connection issue --- backend/dev.sh | 2 +- backend/start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/dev.sh b/backend/dev.sh index e4e1aaa12..9d0b5fa42 100644 --- a/backend/dev.sh +++ b/backend/dev.sh @@ -1 +1 @@ -uvicorn main:app --port 8080 --host 0.0.0.0 --reload \ No newline at end of file +uvicorn main:app --port 8080 --host 0.0.0.0 --forwarded-allow-ips '*' --reload \ No newline at end of file diff --git a/backend/start.sh b/backend/start.sh index 2d0702993..9fb1f576f 100644 --- a/backend/start.sh +++ b/backend/start.sh @@ -1 +1 @@ -uvicorn main:app --host 0.0.0.0 --port 8080 \ No newline at end of file +uvicorn main:app --host 0.0.0.0 --port 8080 --forwarded-allow-ips '*' \ No newline at end of file