generated from geoadmin/template-service-flask
-
Notifications
You must be signed in to change notification settings - Fork 2
/
wsgi.py
45 lines (36 loc) · 1.59 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
import os
from gunicorn.app.base import BaseApplication
from app import app as application
from app.helpers import get_logging_cfg
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__':
HTTP_PORT = str(os.environ.get('HTTP_PORT', "5000"))
# 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',
'worker_tmp_dir': os.getenv("GUNICORN_TMPFS_DIR", None),
'workers': int(os.getenv('WSGI_WORKERS',
'2')), # scaling horizontally is left to Kubernetes
'timeout': int(os.getenv('WSGI_TIMEOUT', '5')),
'logconfig_dict': get_logging_cfg(),
'forwarded_allow_ips': os.getenv('FORWARED_ALLOW_IPS', '*'),
'secure_scheme_headers': {
os.getenv('FORWARDED_PROTO_HEADER_NAME', 'X-Forwarded-Proto').upper(): 'https'
}
}
StandaloneApplication(application, options).run()