searx.ini 677 B

12345678910111213141516171819202122232425262728293031323334
  1. [uwsgi]
  2. http-socket = :8888
  3. # Who will run the code
  4. uid = searx
  5. gid = searx
  6. # disable logging for privacy
  7. disable-logging = false
  8. # Number of workers (usually CPU count)
  9. workers = 4
  10. # The right granted on the created socket
  11. chmod-socket = 666
  12. # Plugin to use and interpretor config
  13. single-interpreter = true
  14. master = true
  15. plugin = python
  16. lazy-apps = true
  17. enable-threads = true
  18. # Settings path for AUR package
  19. env = SEARX_SETTINGS_PATH=/etc/searx/settings.yml
  20. # Module to import
  21. module = searx.webapp
  22. # Virtualenv and python path
  23. #virtualenv = /usr/local/searx/searx-ve/
  24. #pythonpath = /usr/local/searx/
  25. #chdir = /usr/local/searx/searx/