diff options
author | xyz <gky44px1999@gmail.com> | 2021-09-06 23:18:32 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-09-06 23:18:32 -0700 |
commit | e7ec92296886631f0145d5cd56c8a494e30cfebb (patch) | |
tree | 92c6818f7b5d5681bbdf5e8719a8b16f15adef71 /.config/myconf/searx.ini | |
parent | 3feed6d53397fb94af9b0fb7ff4389477607e859 (diff) |
add root dotfiles, with script to sudo cp them
Diffstat (limited to '.config/myconf/searx.ini')
-rw-r--r-- | .config/myconf/searx.ini | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.config/myconf/searx.ini b/.config/myconf/searx.ini new file mode 100644 index 00000000..e184137c --- /dev/null +++ b/.config/myconf/searx.ini @@ -0,0 +1,36 @@ +[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 = 2
+
+# 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/
+
+# Cache: https://uwsgi-docs.readthedocs.io/en/latest/Caching.html
+cache2 = name=searxcache,items=2000,blocks=2000,blocksize=4096,bitmap=1
|