diff options
-rw-r--r-- | .config/myconf/searx.ini | 36 | ||||
-rwxr-xr-x | .local/bin/cpcfg | 4 |
2 files changed, 1 insertions, 39 deletions
diff --git a/.config/myconf/searx.ini b/.config/myconf/searx.ini deleted file mode 100644 index e184137c..00000000 --- a/.config/myconf/searx.ini +++ /dev/null @@ -1,36 +0,0 @@ -[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
diff --git a/.local/bin/cpcfg b/.local/bin/cpcfg index ae1c41cc..3ff2cac6 100755 --- a/.local/bin/cpcfg +++ b/.local/bin/cpcfg @@ -3,7 +3,5 @@ # some dotfiles file permissions are different than normal root:root file, need chown sudo cp -i -- "$XDG_CONFIG_HOME/myconf/pacman.conf" /etc/ sudo cp -i -- "$XDG_CONFIG_HOME/myconf/locale.gen" /etc/ -sudo mkdir -p /etc/uwsgi/ || exit -sudo cp -i -- "$XDG_CONFIG_HOME/myconf/searx.ini" /etc/uwsgi/ -sudo mkdir /etc/wildmidi/ || exit +sudo mkdir -p /etc/wildmidi/ || exit sudo cp -i -- "$XDG_CONFIG_HOME/myconf/wildmidi.cfg" /etc/wildmidi/ |