2022-03-08 16:36:49 +00:00
|
|
|
# -*- mode: conf; coding: utf-8 -*-
|
2020-04-08 16:38:36 +00:00
|
|
|
[uwsgi]
|
|
|
|
|
|
|
|
# uWSGI core
|
|
|
|
# ----------
|
|
|
|
#
|
|
|
|
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#uwsgi-core
|
|
|
|
|
2022-05-27 16:43:14 +00:00
|
|
|
# Who will run the code / Hint: in emperor-tyrant mode uid & gid setting will be
|
|
|
|
# ignored [1]. Mode emperor-tyrant is the default on fedora (/etc/uwsgi.ini).
|
|
|
|
#
|
|
|
|
# [1] https://uwsgi-docs.readthedocs.io/en/latest/Emperor.html#tyrant-mode-secure-multi-user-hosting
|
|
|
|
#
|
2020-04-08 16:38:36 +00:00
|
|
|
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-04-08 16:38:36 +00:00
|
|
|
# chdir to specified directory before apps loading
|
2022-05-27 16:41:08 +00:00
|
|
|
chdir = ${SEARXNG_SRC}/searx
|
2020-04-08 16:38:36 +00:00
|
|
|
|
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-04-08 16:38:36 +00:00
|
|
|
|
|
|
|
# disable logging for privacy
|
|
|
|
disable-logging = true
|
|
|
|
|
|
|
|
# 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
|
|
|
|
plugin = python3,http
|
|
|
|
|
|
|
|
# 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
|
2022-05-27 16:41:08 +00:00
|
|
|
virtualenv = ${SEARXNG_PYENV}
|
2020-04-08 16:38:36 +00:00
|
|
|
|
|
|
|
# add directory (or glob) to pythonpath
|
2022-05-27 16:41:08 +00:00
|
|
|
pythonpath = ${SEARXNG_SRC}
|
2020-04-08 16:38:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
# speak to upstream
|
|
|
|
# -----------------
|
|
|
|
|
2022-05-27 16:41:08 +00:00
|
|
|
socket = ${SEARXNG_UWSGI_SOCKET}
|
2022-07-31 09:40:43 +00:00
|
|
|
buffer-size = 8192
|
2022-03-08 17:13:13 +00:00
|
|
|
|
2022-05-27 16:41:08 +00:00
|
|
|
# uWSGI serves the static files and in settings.yml we use::
|
|
|
|
#
|
|
|
|
# ui:
|
|
|
|
# static_use_hash: true
|
|
|
|
#
|
|
|
|
static-map = /static=${SEARXNG_STATIC}
|
2022-03-08 17:13:13 +00:00
|
|
|
# expires set to one year since there are hashes
|
|
|
|
static-expires = /* 31557600
|
|
|
|
static-gzip-all = True
|
|
|
|
offload-threads = %k
|
|
|
|
|
|
|
|
# Cache
|
|
|
|
cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1
|