about.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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/searx/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/searx/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 Chromium-based browsers*). Therefore they show up
  43. in neither our logs, nor your url history. In the case of Chromium-based
  44. browser users there is an exception: searx uses the search bar to perform GET
  45. requests.
  46. Searx can be added to your browser's search bar; moreover, it can be set as
  47. the default search engine.
  48. </p>
  49. <h2 id='add to browser'>How to set as the default search engine?</h2>
  50. <p>
  51. Searx supports <a href="https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md">OpenSearch</a>.
  52. For more information on changing your default search engine, see your browser's documentation:
  53. </p>
  54. <ul>
  55. <li><a href="https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox">Firefox</a></li>
  56. <li><a href="https://support.microsoft.com/en-us/help/4028574/microsoft-edge-change-the-default-search-engine">Microsoft Edge</a></li>
  57. <li>Chromium-based browsers <a href="https://www.chromium.org/tab-to-search">only add websites that the user navigates to without a path.</a>
  58. </ul>
  59. <h2>Where to find anonymous usage statistics of this instance ?</h2>
  60. <p>
  61. <a href="{{ url_for('stats') }}">Stats page</a> contains some useful data about the engines used.
  62. </p>
  63. <h2>How can I make it my own?</h2>
  64. <p>
  65. Searx appreciates your concern regarding logs, so take the
  66. code from the <a href="https://github.com/searx/searx">original searx project</a> and
  67. run it yourself!
  68. </p>
  69. <p>
  70. Add your searx instance to this <a href="{{ brand.PUBLIC_INSTANCES }}"> list
  71. of public searx instances</a> to help other people reclaim their privacy and
  72. make the Internet freer! The more decentralized the Internet is, the more
  73. freedom we have!
  74. </p>
  75. <h2>Where are the docs & code of this instance?</h2>
  76. <p>
  77. See the <a href="{{ brand.DOCS_URL }}">{{ brand.DOCS_URL }}</a>
  78. and <a href="{{ brand.GIT_URL }}">{{ brand.GIT_URL }}</a>
  79. </p>
  80. </div>
  81. {% include "__common__/aboutextend.html" ignore missing %}