2020-02-25 19:20:17 +00:00
|
|
|
[uwsgi]
|
|
|
|
|
|
|
|
# uWSGI core
|
|
|
|
# ----------
|
|
|
|
#
|
|
|
|
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#uwsgi-core
|
|
|
|
|
|
|
|
# Who will run the code
|
|
|
|
uid = ${SERVICE_USER}
|
|
|
|
gid = ${SERVICE_GROUP}
|
|
|
|
|
[fix] external_bang - UnicodeDecodeError: 'ascii' codec can't decode (#2043)
Python's default encoding depends on the platform, set (python) default encoding
UTF-8 in uwsgi ini files:
LANG=C.UTF-8
LANGUAGE=C.UTF-8
LC_ALL=C.UTF-8
Error pattern:
Traceback (most recent call last):
File "/usr/local/searx/searx-src/searx/webapp.py", line 74, in <module>
from searx.search import SearchWithPlugins, get_search_query_from_webapp
File "/usr/local/searx/searx-src/searx/search.py", line 32, in <module>
from searx.external_bang import get_bang_url
File "/usr/local/searx/searx-src/searx/external_bang.py", line 13, in <module>
for bang in json.load(json_file)['bang']:
File "/usr/lib/python3.8/json/__init__.py", line 293, in load
return loads(fp.read(),
File "/usr/lib/python3.8/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 31341: ordinal not in range(128)
close: https://github.com/asciimoo/searx/issues/2041
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-07-11 10:17:06 +00:00
|
|
|
# set (python) default encoding UTF-8
|
|
|
|
env = LANG=C.UTF-8
|
|
|
|
env = LANGUAGE=C.UTF-8
|
|
|
|
env = LC_ALL=C.UTF-8
|
|
|
|
|
2020-02-25 19:20:17 +00:00
|
|
|
# chdir to specified directory before apps loading
|
|
|
|
chdir = ${SEARX_SRC}/searx
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
# SearXNG configuration (settings.yml)
|
2021-10-02 15:18:05 +00:00
|
|
|
env = SEARXNG_SETTINGS_PATH=${SEARXNG_SETTINGS_PATH}
|
2020-02-25 19:20:17 +00:00
|
|
|
|
|
|
|
# disable logging for privacy
|
|
|
|
logger = systemd
|
2020-03-06 21:06:19 +00:00
|
|
|
disable-logging = true
|
2020-02-25 19:20:17 +00:00
|
|
|
|
|
|
|
# The right granted on the created socket
|
|
|
|
chmod-socket = 666
|
|
|
|
|
|
|
|
# Plugin to use and interpretor config
|
|
|
|
single-interpreter = true
|
|
|
|
|
|
|
|
# enable master process
|
|
|
|
master = true
|
|
|
|
|
|
|
|
# load apps in each worker instead of the master
|
|
|
|
lazy-apps = true
|
|
|
|
|
|
|
|
# load uWSGI plugins
|
2020-02-26 18:07:55 +00:00
|
|
|
plugin = python
|
2020-02-25 19:20:17 +00:00
|
|
|
|
|
|
|
# By default the Python plugin does not initialize the GIL. This means your
|
|
|
|
# app-generated threads will not run. If you need threads, remember to enable
|
|
|
|
# them with enable-threads. Running uWSGI in multithreading mode (with the
|
|
|
|
# threads options) will automatically enable threading support. This *strange*
|
|
|
|
# default behaviour is for performance reasons.
|
|
|
|
enable-threads = true
|
|
|
|
|
|
|
|
|
|
|
|
# plugin: python
|
|
|
|
# --------------
|
|
|
|
#
|
|
|
|
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#plugin-python
|
|
|
|
|
|
|
|
# load a WSGI module
|
|
|
|
module = searx.webapp
|
|
|
|
|
|
|
|
# set PYTHONHOME/virtualenv
|
|
|
|
virtualenv = ${SEARX_PYENV}
|
|
|
|
|
|
|
|
# add directory (or glob) to pythonpath
|
|
|
|
pythonpath = ${SEARX_SRC}
|
|
|
|
|
|
|
|
|
2020-03-06 13:47:00 +00:00
|
|
|
# speak to upstream
|
|
|
|
# -----------------
|
2020-02-25 19:20:17 +00:00
|
|
|
#
|
2020-03-06 13:47:00 +00:00
|
|
|
# Activate the 'http' configuration for filtron or activate the 'socket'
|
|
|
|
# configuration if you setup your HTTP server to use uWSGI protocol via sockets.
|
2020-02-25 19:20:17 +00:00
|
|
|
|
2020-03-06 13:47:00 +00:00
|
|
|
# using IP:
|
|
|
|
#
|
|
|
|
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#plugin-http
|
2020-02-25 19:20:17 +00:00
|
|
|
# Native HTTP support: https://uwsgi-docs.readthedocs.io/en/latest/HTTP.html
|
2020-03-06 13:47:00 +00:00
|
|
|
|
2020-04-05 15:40:37 +00:00
|
|
|
http = ${SEARX_INTERNAL_HTTP}
|
2020-03-06 13:47:00 +00:00
|
|
|
|
|
|
|
# using unix-sockets:
|
|
|
|
#
|
|
|
|
# On some distributions you need to create the app folder for the sockets::
|
|
|
|
#
|
2020-04-08 16:38:36 +00:00
|
|
|
# mkdir -p /run/uwsgi/app/searx
|
|
|
|
# chown -R ${SERVICE_USER}:${SERVICE_GROUP} /run/uwsgi/app/searx
|
2020-03-06 13:47:00 +00:00
|
|
|
#
|
2021-01-05 10:22:48 +00:00
|
|
|
# socket = /run/uwsgi/app/searx/socket
|
|
|
|
|
|
|
|
# Cache
|
|
|
|
cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1
|