Guest User

Untitled

a guest
Dec 4th, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. general:
  2. debug : True # Debug mode, only for development
  3. instance_name : "searx" # displayed name
  4.  
  5. search:
  6. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  7. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off by default
  8. default_lang : "" # Default search language - leave blank to detect from browser information or use codes from 'languages.py'
  9. ban_time_on_fail : 5 # ban time in seconds after engine errors
  10. max_ban_time_on_fail : 120 # max ban time in seconds after engine errors
  11.  
  12. server:
  13. port : 8888
  14. bind_address : "127.0.0.1" # address to listen on
  15. secret_key : "68dfdfcc6cba43b77146f21a56df15672d44aab8e5463950d6cd4f02846f6a79"
  16. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  17. image_proxy : False # Proxying image results through searx
  18. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  19.  
  20. ui:
  21. static_path : "" # Custom static path - leave it blank if you didn't change
  22. templates_path : "" # Custom templates path - leave it blank if you didn't change
  23. default_theme : oscar # ui theme
  24. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  25. theme_args :
  26. oscar_style : logicodev # default style of oscar
  27. # categories_order :
  28. # - general
  29. # - files
  30. # - map
  31. # - it
  32. # - science
  33.  
  34. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  35. # uncomment below section if you have running morty proxy
  36. # the key is base64 encoded (keep the !!binary notation)
  37. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  38. #result_proxy:
  39. # url : http://127.0.0.1:3000/
  40. # key : !!binary "your_morty_proxy_key"
  41.  
  42. outgoing: # communication with search engines
  43. request_timeout : 2.0 # default timeout in seconds, can be override by engine
  44. # max_request_timeout: 10.0 # the maximum timeout in seconds
  45. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  46. pool_connections : 100 # Number of different hosts
  47. pool_maxsize : 10 # Number of simultaneous requests by host
  48. # uncomment below section if you want to use a proxy
  49. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  50. # SOCKS proxies are also supported: see http://requests.readthedocs.io/en/master/user/advanced/#socks
  51. # proxies :
  52. # http : http://127.0.0.1:8080
  53. # https: http://127.0.0.1:8080
  54. # uncomment below section only if you have more than one network interface
  55. # which can be the source of outgoing search requests
  56. # source_ips:
  57. # - 1.1.1.1
  58. # - 1.1.1.2
  59.  
Add Comment
Please, Sign In to add comment