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/searx.ini
Maniack Crudelis a12c4b6e92 Refactoring and upgrade 0.11
- Add a license file
- Uses last helpers
- Nginx configuration on one file for subpath and root
- Upgrade 0.11
- Script restore fixed
- Global refactoring
2017-05-01 15:47:20 +02:00

29 lines
513 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 = python
# Application base folder
base = __FINALPATH__
# Module to import
module = __APP__.webapp
# Virtualenv and python path
virtualenv = __FINALPATH__
pythonpath = __FINALPATH__
chdir = __FINALPATH__/searx/
# The variable holding flask application
callable = app