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
2020-04-10 22:38:03 +02:00

34 lines
639 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 = __FINALPATH__
# Support running the module from a webserver subdirectory.
route-run = fixpathinfo:
# Module to import
module = __APP__.webapp
# Virtualenv and python path
virtualenv = __FINALPATH__
pythonpath = __FINALPATH__
chdir = __FINALPATH__/searx/
# The variable holding flask application
callable = app