Spaces:
Sleeping
Sleeping
Added gunicorn config
Browse files- gunicorn.conf.py +8 -0
gunicorn.conf.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# gunicorn.conf.py
|
2 |
+
|
3 |
+
bind = '0.0.0.0:7860'
|
4 |
+
workers = 6
|
5 |
+
timeout = 120
|
6 |
+
loglevel = 'info'
|
7 |
+
accesslog = '-'
|
8 |
+
errorlog = '-'
|