blob: 7681436a1c7db0794642a7132f2d9f9cae7d55a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[uwsgi]
http-socket = :8888
# Who will run the code
uid = searx
gid = searx
# disable logging for privacy
disable-logging = false
# Number of workers (usually CPU count)
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
lazy-apps = true
enable-threads = true
# Settings path for AUR package
env = SEARX_SETTINGS_PATH=/etc/searx/settings.yml
# Module to import
module = searx.webapp
# Virtualenv and python path
#virtualenv = /usr/local/searx/searx-ve/
#pythonpath = /usr/local/searx/
#chdir = /usr/local/searx/searx/
|