1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searxng_ynh.git synced 2024-09-03 20:26:00 +02:00
searxng_ynh/conf/uwsgi.ini
2022-11-23 17:20:15 +01:00

34 lines
671 B
INI

[uwsgi]
# Who will run the code
uid = searxng
gid = searxng
# 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 = python3
lazy-apps = true
enable-threads = true
# Application base folder
base = /opt/yunohost/searxng
# Support running the module from a webserver subdirectory.
route-run = fixpathinfo:
# Module to import
module = searxng.webapp
# Virtualenv and python path
virtualenv = /opt/yunohost/searxng
pythonpath = /opt/yunohost/searxng
chdir = /opt/yunohost/searxng/searx/
# The variable holding flask application
callable = app