1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searxng_ynh.git synced 2024-09-03 20:26:00 +02:00
searxng_ynh/conf/uwsgi.ini

88 lines
2.1 KiB
INI
Raw Normal View History

# -*- mode: conf; coding: utf-8 -*-
2022-11-23 12:46:39 +01:00
[uwsgi]
# uWSGI core
# ----------
#
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#uwsgi-core
# 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
#
2022-11-24 18:35:24 +01:00
uid = __APP__
gid = __APP__
2022-11-23 12:46:39 +01:00
# set (python) default encoding UTF-8
env = LANG=C.UTF-8
env = LANGUAGE=C.UTF-8
env = LC_ALL=C.UTF-8
# chdir to specified directory before apps loading
chdir = __INSTALL_DIR__/searxng-src/searx
# SearXNG configuration (settings.yml)
2023-09-27 22:08:09 +02:00
env = SEARXNG_SETTINGS_PATH=__INSTALL_DIR__/settings.yml
# disable logging for privacy
disable-logging = true
2022-11-23 12:46:39 +01:00
# The right granted on the created socket
chmod-socket = 666
# Plugin to use and interpreter config
2022-11-23 12:46:39 +01:00
single-interpreter = true
# enable master process
2022-11-23 12:46:39 +01:00
master = true
# load apps in each worker instead of the master
2022-11-23 12:46:39 +01:00
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.
2022-11-23 12:46:39 +01:00
enable-threads = true
2024-05-15 21:14:13 +02:00
# Number of workers (usually CPU count)
workers = %k
threads = 4
2022-11-23 12:46:39 +01:00
# plugin: python
# --------------
#
# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#plugin-python
2022-11-23 12:46:39 +01:00
# load a WSGI module
2023-02-12 20:23:29 +01:00
module = searx.webapp
2022-11-23 12:46:39 +01:00
# set PYTHONHOME/virtualenv
virtualenv = __INSTALL_DIR__/searxng-pyenv
# add directory (or glob) to pythonpath
pythonpath = __INSTALL_DIR__
2022-11-23 12:46:39 +01:00
2022-11-24 18:35:24 +01:00
2022-11-24 18:55:07 +01:00
# speak to upstream
# -----------------
socket = /var/run/__APP__/app.socket
buffer-size = 8192
# uWSGI serves the static files and in settings.yml we use::
#
# ui:
# static_use_hash: true
#
static-map = /static=__INSTALL_DIR__/searxng-src/searx/static
2024-05-15 21:14:13 +02:00
# expires set to one day
static-expires = /* 86400
2022-11-24 18:55:07 +01:00
static-gzip-all = True
offload-threads = %k