From 3e00add78384baa75486be49109994e5e775cc77 Mon Sep 17 00:00:00 2001 From: Domingo Dirutigliano Date: Tue, 26 Sep 2023 23:21:13 +0200 Subject: [PATCH] fix: host on ipv4 and ipv6 --- backend/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.py b/backend/app.py index 3a044b4..4949f5b 100644 --- a/backend/app.py +++ b/backend/app.py @@ -154,7 +154,7 @@ if __name__ == '__main__': os.chdir(os.path.dirname(os.path.realpath(__file__))) uvicorn.run( "app:app", - host="::", + host=None, port=FIREGEX_PORT, reload=DEBUG, access_log=True,