use_default_settings.yml 1007 B

1234567891011121314151617181920212223
  1. use_default_settings: True
  2. general:
  3. debug : False # Debug mode, only for development
  4. instance_name : "searx" # displayed name
  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. formats: [html, csv, json, rss]
  10. server:
  11. port : 8888
  12. bind_address : "127.0.0.1" # address to listen on
  13. secret_key : "ultrasecretkey" # change this!
  14. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  15. image_proxy : False # Proxying image results through searx
  16. # uncomment below section if you have running morty proxy
  17. #result_proxy:
  18. # url : http://127.0.0.1:3000/
  19. # key : !!binary "your_morty_proxy_key"