pokeapi/gunicorn.py.ini
Alexandre Boucey d771c293df Added Docker Compose support for production (#183)
* Added Docker Compose support for production

* Added rate limiting to nginx
2016-07-07 13:23:59 +01:00

4 lines
91 B
INI

from multiprocessing import cpu_count
bind = '0.0.0.0:8000'
workers = cpu_count() * 2 + 1