uwsgi.ini
393 Bytes
[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;
# }
# }
#