mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
15 lines
304 B
Python
15 lines
304 B
Python
|
"""Default gunicorn config for the docker environment.
|
||
|
|
||
|
To override, mount a new gunicorn config at /data/gunicorn.conf.py in your
|
||
|
Docker container.
|
||
|
"""
|
||
|
|
||
|
# pylint: disable=invalid-name
|
||
|
|
||
|
# Enable to log every request
|
||
|
# accesslog = "-"
|
||
|
errorlog = "-"
|
||
|
preload_app = True
|
||
|
workers = 1
|
||
|
worker_class = "gevent"
|