diff --git a/app/main.py b/app/main.py index 0a5cf26..e8a1327 100644 --- a/app/main.py +++ b/app/main.py @@ -127,5 +127,5 @@ async def websocket_endpoint(websocket: WebSocket): # --- Point d'entrée pour lancer le serveur (avec uvicorn) --- if __name__ == "__main__": import uvicorn - print("Lancement du serveur de l'API Cyberusgate sur http://127.0.0.1:8000") - uvicorn.run(app, host="127.0.0.1", port=8000) + print("Lancement du serveur de l'API Cyberusgate sur http://0.0.0.0:8000") + uvicorn.run(app, host="0.0.0.0", port=8000)