about.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <div{% if rtl %} dir="ltr"{% endif %}>
  2. <h1>About <a href="{{ url_for('index') }}">searxng</a></h1>
  3. <p>
  4. SearXNG is a fork from the well-known <a href="https://github.com/searx/searx">searx</a>
  5. <a href="https://en.wikipedia.org/wiki/Metasearch_engine"> metasearch engine</a>,
  6. aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a>
  7. while not storing information about its users.
  8. </p>
  9. <p>More about SearXNG ...</p>
  10. <ul>
  11. <li><a href="{{ searx_git_url }}">SearXNG sources</a></li>
  12. <li><a href="https://weblate.bubu1.eu/projects/searxng/">weblate</a></li>
  13. </ul>
  14. <hr />
  15. <h2>Why use it?</h2>
  16. <ul>
  17. <li>
  18. SearXNG may not offer you as personalised results as Google, but it doesn't
  19. generate a profile about you.
  20. </li>
  21. <li>
  22. SearXNG doesn't care about what you search for, never shares anything with a
  23. third party, and it can't be used to compromise you.
  24. </li>
  25. <li>
  26. SearXNG is free software, the code is 100% open and you can help to make
  27. it better. See more on <a href="{{ searx_git_url
  28. }}">SearXNG sources</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 SearXNG your default search engine or run
  34. it on your own server
  35. </p>
  36. <h2>Technical details - How does it work?</h2>
  37. <p>
  38. SearXNG 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. SearXNG 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. SearXNG 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. SearXNG appreciates your concern regarding logs, so take the code from
  66. the <a href="{{ searx_git_url }}">SearXNG project</a> and
  67. run it yourself!
  68. </p>
  69. <p>
  70. Add your instance to this <a href="{{ get_setting('brand.public_instances') }}"> list of
  71. public instances</a> to help other people reclaim their privacy and make the
  72. Internet freer! The more decentralized the Internet is, the more freedom we
  73. have!
  74. </p>
  75. <h2>Where are the docs & code of this instance?</h2>
  76. <p>
  77. See the <a href="{{ get_setting('brand.docs_url') }}">SearXNG docs</a>
  78. and <a href="{{ searx_git_url }}">SearXNG sources</a>
  79. </p>
  80. </div>
  81. {% include "__common__/aboutextend.html" ignore missing %}