about.html 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. {% include 'github_ribbon.html' %}
  4. <div class="row">
  5. <h1>About <a href="/">searx</a></h1>
  6. <p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a> inspired by the <a href="http://seeks-project.info/">seeks-project</a>.
  7. <br />It tries to provide basic privacy by mixing your queries with those from others while avoiding storing search data. For all browsers (except chrom*) queries are made using a POST request. Thus they don't show up in our logs, nor in your url history. For Chrom* users there is an exception, searx is used from the search bar, it issues GET requests.
  8. <br />You can add it to your browsers search bar and even make it your default search engine.
  9. </p>
  10. <h2>What makes searx different</h2>
  11. <ul>
  12. <li>No ads - searx is Free Software (free-as-in-freedom), funded by your donations</li>
  13. <li>Privacy - tries to minimalize the digital footprint of the searches</li>
  14. <li>Optionally self hosted - see the <a href="#faq">FAQ</a></li>
  15. <li>Easy to add new engines/categories</li>
  16. </ul>
  17. <h2>Engines</h2>
  18. {% for (categ,search_engines) in categs %}
  19. <h3>{{ categ.capitalize() }}</h3>
  20. <ul>
  21. {% for search_engine in search_engines %}
  22. {% if not search_engine.private %}
  23. <li>{{ search_engine.name }}</li>
  24. {% endif %}
  25. {% endfor %}
  26. </ul>
  27. {% endfor %}
  28. <p>Please add more engines to this list, pull requests are welcome!</p>
  29. <h2><a href="https://github.com/asciimoo/searx/wiki/Searx-instances">Running public instances</a></h2>
  30. <h2 id="faq">FAQ</h2>
  31. <h3>Trust</h3>
  32. <p>It's ok if you don't trust us regarding the logs, <a href="https://github.com/asciimoo/searx">take the code</a> and run it yourself! decentralize!</p>
  33. <h3>How to add to firefox?</h3>
  34. <p><a href="#" onclick="window.external.AddSearchProvider(window.location.protocol + '//' + window.location.host + '/opensearch.xml')">Install</a> searx as a search engine on any version of Firefox! (javascript required)</p>
  35. <h2 id="dev_faq">Developer FAQ</h2>
  36. <h3>New engines?</h3>
  37. <ul>
  38. <li>Edit your engines.cfg, see <a href="https://raw.github.com/asciimoo/searx/master/engines.cfg_sample">sample config</a></li>
  39. <li>Create your custom engine module, check the <a href="https://github.com/asciimoo/searx/blob/master/examples/basic_engine.py">example engine</a></li>
  40. </ul>
  41. <p>Don't forget to restart searx after config edit!</p>
  42. <h3>WSGI support?</h3>
  43. <p><a href="https://about.okhin.fr/posts/Searx/">Okhin wrote</a> a great and detailed article about the setup.</p>
  44. <h3>How to debug engines?</h3>
  45. <p><a href="/stats">Stats page</a> contains some useful data about the used engines.</p>
  46. </div>
  47. {% endblock %}