about.html 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <div{% if rtl %} dir="ltr"{% endif %}>
  2. <h1>About <a href="{{ url_for('index') }}">searx</a></h1>
  3. <p>
  4. Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>,
  5. aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a>
  6. while not storing information about its users.
  7. </p>
  8. <p>More about searx ...</p>
  9. <ul>
  10. <li><a href="https://github.com/asciimoo/searx">github</a></li>
  11. <li><a href="https://twitter.com/Searx_engine">twitter</a></li>
  12. <li>IRC: #searx @ freenode (<a href="https://kiwiirc.com/client/irc.freenode.com/searx">webclient</a>)</li>
  13. <li><a href="https://www.transifex.com/projects/p/searx/">transifex</a></li>
  14. </ul>
  15. <hr />
  16. <h2>Why use searx?</h2>
  17. <ul>
  18. <li>
  19. Searx may not offer you as personalised results as Google, but it doesn't
  20. generate a profile about you.
  21. </li>
  22. <li>
  23. Searx doesn't care about what you search for, never shares anything with a
  24. third party, and it can't be used to compromise you.
  25. </li>
  26. <li>
  27. Searx is free software, the code is 100% open and you can help to make it
  28. better. See more on <a href="https://github.com/asciimoo/searx">github</a>.
  29. </li>
  30. </ul>
  31. <p>
  32. If you do care about privacy, want to be a conscious user, or otherwise
  33. believe in digital freedom, make searx your default search engine or run it
  34. on your own server
  35. </p>
  36. <h2>Technical details - How does it work?</h2>
  37. <p>
  38. Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>,
  39. inspired by the <a href="https://beniz.github.io/seeks/">seeks project</a>.
  40. It provides basic privacy by mixing your queries with searches on other
  41. platforms without storing search data. Queries are made using a POST request
  42. on every browser (except chrome*). Therefore they show up in neither our
  43. logs, nor your url history. In case of Chrome* users there is an exception,
  44. searx uses the search bar to perform GET requests.
  45. Searx can be added to your browser's search bar; moreover, it can be set as
  46. the default search engine.
  47. </p>
  48. <h2 id='add to browser'>How to set as the default search engine?</h2>
  49. <dt>Firefox</dt>
  50. <dd>
  51. <a href="#" onclick="window.external.AddSearchProvider(window.location.protocol + '//' + window.location.host + '{{ url_for('opensearch') }}');">Install</a>
  52. searx as a search engine on any version of Firefox! (javascript required)
  53. </dd>
  54. <h2>Where to find anonymous usage statistics of this instance ?</h2>
  55. <p>
  56. <a href="{{ url_for('stats') }}">Stats page</a> contains some useful data about the engines used.
  57. </p>
  58. <h2>How can I make it my own?</h2>
  59. <p>
  60. Searx appreciates your concern regarding logs, so take the
  61. code from the <a href="https://github.com/asciimoo/searx">original searx project</a> and
  62. run it yourself!
  63. </p>
  64. <p>
  65. Add your searx instance to this <a href="{{ brand.PUBLIC_INSTANCES }}"> list
  66. of public searx instances</a> to help other people reclaim their privacy and
  67. make the Internet freer! The more decentralized the Internet is, the more
  68. freedom we have!
  69. </p>
  70. <h2>Where are the docs & code of this instance?</h2>
  71. <p>
  72. See the <a href="{{ brand.DOCS_URL }}">{{ brand.DOCS_URL }}</a>
  73. and <a href="{{ brand.GIT_URL }}">{{ brand.GIT_URL }}</a>
  74. </p>
  75. </div>
  76. {% include "__common__/aboutextend.html" ignore missing %}