diff --git a/conf/radicale.ini b/conf/radicale.ini index 31c8c6d..0935303 100644 --- a/conf/radicale.ini +++ b/conf/radicale.ini @@ -1,9 +1,30 @@ [uwsgi] -socket=/tmp/radicale.sock -plugins=python -uid=www-data -gid=www-data -virtualenv=/usr/local/radicale -chdir=/var/www/radicale +# Who will run the code +uid = radicale +gid = radicale + +# Number of workers +workers = 4 + +# The right granted on the created socket +chmod-socket = 666 + +# Plugin to use and interpretor config +single-interpreter = true +master = true +plugin = python + +# Application base folder +base = /opt/yunohost/radicale + +# Module to import +#module = searx.webapp + +# Virtualenv and python path +virtualenv = /opt/yunohost/radicale +pythonpath = /opt/yunohost/radicale +chdir= /var/www/radicale wsgi-file=/var/www/radicale/radicale.wsgi -master=True + +# The variable holding flask application +callable = app