1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/conf/uwsgi.ini

34 lines
655 B
INI

[uwsgi]
# Who will run the code
uid = __APP__
gid = __APP__
# 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 = __INSTALL_DIR__
# Support running the module from a webserver subdirectory.
route-run = fixpathinfo:
# Module to import
module = searx.webapp
# Virtualenv and python path
virtualenv = __INSTALL_DIR__/venv
pythonpath = __INSTALL_DIR__/venv
chdir = __INSTALL_DIR__/searx/
# The variable holding flask application
callable = app