-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwsgi.py
46 lines (37 loc) · 1.54 KB
/
wsgi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import multiprocessing
from gunicorn.app.base import BaseApplication
from app import app as application
from app.helpers import get_logging_cfg
from app.settings import ALTI_WORKERS
from app.settings import GUNICORN_WORKER_TMP_DIR
from app.settings import HTTP_PORT
class StandaloneApplication(BaseApplication): # pylint: disable=abstract-method
def __init__(self, app, options=None): # pylint: disable=redefined-outer-name
self.options = options or {}
self.application = app
super().__init__()
def load_config(self):
config = {
key: value for key,
value in self.options.items() if key in self.cfg.settings and value is not None
}
for key, value in config.items():
self.cfg.set(key.lower(), value)
def load(self):
return self.application
# We use the port 5000 as default, otherwise we set the HTTP_PORT env variable within the container.
if __name__ == '__main__':
if ALTI_WORKERS <= 0:
ALTI_WORKERS = (multiprocessing.cpu_count() * 2) + 1
# Bind to 0.0.0.0 to let your app listen to all network interfaces.
options = {
'bind': f'0.0.0.0:{HTTP_PORT}',
'worker_class': 'gevent',
'workers': ALTI_WORKERS,
'access_log_format': '%(h)s %(l)s %(u)s "%(r)s" %(s)s %(B)s Bytes '
'"%(f)s" "%(a)s" %(L)ss',
'worker_tmp_dir': GUNICORN_WORKER_TMP_DIR,
'timeout': 60,
'logconfig_dict': get_logging_cfg()
}
StandaloneApplication(application, options).run()