Create gunicorn.conf.py
Browse files- gunicorn.conf.py +8 -0
gunicorn.conf.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
bind = "0.0.0.0:8080"
|
| 2 |
+
workers = 1
|
| 3 |
+
threads = 4
|
| 4 |
+
worker_class = "gthread"
|
| 5 |
+
timeout = 0
|
| 6 |
+
keepalive = 65
|
| 7 |
+
capture_output = True
|
| 8 |
+
loglevel = "info"
|