From 53b3481c0efc1141948982789895a342a333d604 Mon Sep 17 00:00:00 2001 From: nikili0n Date: Wed, 20 Sep 2023 15:02:41 +0300 Subject: [PATCH] change to host in web --- src/web/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/main.py b/src/web/main.py index eb6db23..e746425 100644 --- a/src/web/main.py +++ b/src/web/main.py @@ -93,4 +93,4 @@ async def download_video(file_path): return StreamingResponse(iterfile(), media_type="video/mp4") -uvicorn.run("src.web.main:app", host="localhost", log_level="info") +uvicorn.run("src.web.main:app", host="0.0.0.0", log_level="info")