From 844e85d3b2cee7184c26596a5a4ed998ea10a9ba Mon Sep 17 00:00:00 2001 From: Ramforth Date: Fri, 31 Oct 2025 19:24:25 +0100 Subject: [PATCH] Add NGINX Proxy Manager IP to CORS allowed origins in main.py --- weather_overlay/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather_overlay/main.py b/weather_overlay/main.py index 14c7125..c8dced2 100644 --- a/weather_overlay/main.py +++ b/weather_overlay/main.py @@ -7,7 +7,7 @@ app = FastAPI() app.add_middleware( CORSMiddleware, - allow_origins=["https://overlays.ramforth.net"], + allow_origins=["https://overlays.ramforth.net", "http://192.168.10.16"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],