Add NGINX Proxy Manager IP to CORS allowed origins in main.py

This commit is contained in:
Ramforth
2025-10-31 19:24:25 +01:00
parent 4a53c90ada
commit 844e85d3b2

View File

@@ -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=["*"],