Make gunicorn listen on ipv6

This commit is contained in:
Chris
2022-03-09 13:10:24 +01:00
committed by Alexander Graf
parent e1a85a450f
commit 9f6848110a

View File

@@ -55,7 +55,7 @@ test_DNS()
start_command=" ".join([
"gunicorn",
f"--threads {str(os.cpu_count())}",
"-b :80",
"-b [::]:80",
"--logger-class mailu.Logger",
"--worker-tmp-dir /dev/shm",
"--access-logfile -" if (log.root.level<=log.INFO) else "",