change to host in web

This commit is contained in:
nikili0n 2023-09-20 15:02:41 +03:00 committed by Dantenerosas
parent 1fea12fc29
commit 53b3481c0e

View File

@ -93,4 +93,4 @@ async def download_video(file_path):
return StreamingResponse(iterfile(), media_type="video/mp4") 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")