summaryrefslogtreecommitdiff
path: root/searx/uwsgi/apps-available/searx.ini
diff options
context:
space:
mode:
authorrafa_99 <raroma09@gmail.com>2022-06-20 00:17:18 +0100
committerrafa_99 <raroma09@gmail.com>2022-06-20 00:17:18 +0100
commit5f72ed29b291a9d61f56a160b9b3ee2f62ecc13d (patch)
tree35b8e914c2792086da0b0acd7a841e5509b24228 /searx/uwsgi/apps-available/searx.ini
parente31c732a5e8d0e1212624718de9738560396ab49 (diff)
Replaced SearX with SearXNG
Diffstat (limited to 'searx/uwsgi/apps-available/searx.ini')
-rw-r--r--searx/uwsgi/apps-available/searx.ini87
1 files changed, 0 insertions, 87 deletions
diff --git a/searx/uwsgi/apps-available/searx.ini b/searx/uwsgi/apps-available/searx.ini
deleted file mode 100644
index 430a455..0000000
--- a/searx/uwsgi/apps-available/searx.ini
+++ /dev/null
@@ -1,87 +0,0 @@
-[uwsgi]
-
-# uWSGI core
-# ----------
-#
-# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#uwsgi-core
-
-# Who will run the code
-uid = searx
-gid = searx
-
-# 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 = /usr/local/searx/searx-src/searx
-
-# searx configuration (settings.yml)
-env = SEARX_SETTINGS_PATH=/etc/searx/settings.yml
-
-# 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
-virtualenv = /usr/local/searx/searx-pyenv
-
-# add directory (or glob) to pythonpath
-pythonpath = /usr/local/searx/searx-src
-
-
-# speak to upstream
-# -----------------
-#
-# Activate the 'http' configuration for filtron or activate the 'socket'
-# configuration if you setup your HTTP server to use uWSGI protocol via sockets.
-
-# using IP:
-#
-# https://uwsgi-docs.readthedocs.io/en/latest/Options.html#plugin-http
-# Native HTTP support: https://uwsgi-docs.readthedocs.io/en/latest/HTTP.html
-
-# http = 127.0.0.1:8888
-
-# using unix-sockets:
-#
-# On some distributions you need to create the app folder for the sockets::
-#
-# mkdir -p /run/uwsgi/app/searx
-# chown -R searx:searx /run/uwsgi/app/searx
-#
-socket = /run/uwsgi/app/searx/socket
-
-# Cache
-cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1