feat: align gunicorn port to the one of compose

This commit is contained in:
Alessandro Pezzè 2021-03-23 19:46:04 +01:00
parent 26c1036d0b
commit 120717a6d2

View file

@ -1,5 +1,5 @@
from multiprocessing import cpu_count
bind = '0.0.0.0:8000'
bind = '0.0.0.0:80'
workers = cpu_count() * 2
threads = cpu_count() * 2