1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/conf/uwsgi.ini

19 lines
626 B
INI
Raw Normal View History

[uwsgi]
plugins = python
2017-09-18 15:08:21 +02:00
master = true
protocol = uwsgi
2017-11-20 15:58:51 +01:00
socket = /var/run/uwsgi/__APP__.socket
2017-09-18 15:08:21 +02:00
virtualenv = __FINALPATH__/venv
# http://uwsgi-docs.readthedocs.io/en/latest/Nginx.html#hosting-multiple-apps-in-the-same-process-aka-managing-script-name-and-path-info
mount = __PATH__=__FINALPATH__/venv/lib/python2.7/site-packages/weblate/wsgi.py
manage-script-name = true
# Needed for OAuth/OpenID
2017-09-18 15:08:21 +02:00
buffer-size = 8192
# Increase number of workers for heavily loaded sites
# Needed for background processing
enable-threads = true
# Child processes do not need file descriptors
2017-09-18 15:08:21 +02:00
close-on-exec = true