Blame view

resources/uwsgi.ini 393 Bytes
e6a07be4   hitier   Add uwsgi ini file
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
[uwsgi]
module = pdc_web:pdc_app

lazy-apps = true
master = true
processes = 5

socket = /tmp/pdc_app.sock
chmod-socket = 666
vacuum = true

die-on-term = true

# To use with nginx configuration:
#
# server {
# 
#         listen 8080;
#         listen [::]:8080;
# 
#         location / {
#             include uwsgi_params;
#             uwsgi_pass unix:/tmp/pdc_app.sock;
#         }
# }
#