weblate/examples/weblate.uwsgi.ini
Michal Čihař 826e5a5c4d Add virtualenv installation instructions
This should be easier for most people to follow as you really don't have
to care about versions shipped by your distributions.

Fixes #1379

Signed-off-by: Michal Čihař <michal@cihar.com>
2017-02-21 18:36:46 +01:00

19 lines
565 B
INI
Vendored

[uwsgi]
plugins = python
master = true
protocol = uwsgi
socket = 127.0.0.1:8080
wsgi-file = /path/to/weblate/weblate/wsgi.py
python-path = /path/to/weblate
# In case you're using virtualenv uncomment this:
# virtualenv = /path/to/weblate/virtualenv
# Needed for OAuth/OpenID
buffer-size = 8192
# Increase number of workers for heavily loaded sites
#workers = 6
# Needed for background processing
enable-threads = true
# Child processes do not need file descriptors
close-on-exec = true
# Avoid default 0000 umask
umask = 0022