From 81997d3c6927bc8acf4f20168f7b37668f8d7c71 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria <6909403+Uxio0@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:08:31 +0100 Subject: [PATCH] Fix HTTPS mixed content for `/admin` --- docker/web/run_web.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/web/run_web.sh b/docker/web/run_web.sh index 255d2bc..d06b553 100755 --- a/docker/web/run_web.sh +++ b/docker/web/run_web.sh @@ -10,4 +10,4 @@ cp -r static/ $DOCKER_SHARED_DIR/ echo "==> $(date +%H:%M:%S) ==> Running migrations..." alembic upgrade head echo "==> $(date +%H:%M:%S) ==> Running Uvicorn... " -exec uvicorn app.main:app --host 0.0.0.0 --port 8888 --proxy-headers --uds $DOCKER_SHARED_DIR/uvicorn.socket \ No newline at end of file +exec uvicorn app.main:app --host 0.0.0.0 --port 8888 --proxy-headers --forwarded-allow-ips='*' --uds $DOCKER_SHARED_DIR/uvicorn.socket