about.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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="{{ brand.GIT_URL }}">github</a></li>
  12. <li><a href="https://www.transifex.com/projects/p/searx/">transifex</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="{{ brand.GIT_URL }}">github</a>.
  28. </li>
  29. </ul>
  30. <p>
  31. If you do care about privacy, want to be a conscious user, or otherwise
  32. believe in digital freedom, make SearXNG your default search engine or run
  33. it on your own server
  34. </p>
  35. <h2>Technical details - How does it work?</h2>
  36. <p>
  37. SearXNG is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>,
  38. inspired by the <a href="https://beniz.github.io/seeks/">seeks project</a>.
  39. It provides basic privacy by mixing your queries with searches on other
  40. platforms without storing search data. Queries are made using a POST request
  41. on every browser (except Chromium-based browsers*). Therefore they show up
  42. in neither our logs, nor your url history. In the case of Chromium-based
  43. browser users there is an exception: searx uses the search bar to perform GET
  44. requests.
  45. SearXNG 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. <p>
  50. SearXNG supports <a href="https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md">OpenSearch</a>.
  51. For more information on changing your default search engine, see your browser's documentation:
  52. </p>
  53. <ul>
  54. <li><a href="https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox">Firefox</a></li>
  55. <li><a href="https://support.microsoft.com/en-us/help/4028574/microsoft-edge-change-the-default-search-engine">Microsoft Edge</a></li>
  56. <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>
  57. </ul>
  58. <h2>Where to find anonymous usage statistics of this instance ?</h2>
  59. <p>
  60. <a href="{{ url_for('stats') }}">Stats page</a> contains some useful data about the engines used.
  61. </p>
  62. <h2>How can I make it my own?</h2>
  63. <p>
  64. SearXNG appreciates your concern regarding logs, so take the code from
  65. the <a href="{{ brand.GIT_URL }}">SearXNG project</a> and run it yourself!
  66. </p>
  67. <p>
  68. Add your instance to this <a href="{{ brand.PUBLIC_INSTANCES }}"> list of
  69. public instances</a> to help other people reclaim their privacy and make the
  70. Internet freer! The more decentralized the Internet is, the more freedom we
  71. have!
  72. </p>
  73. <h2>Where are the docs & code of this instance?</h2>
  74. <p>
  75. See the <a href="{{ brand.DOCS_URL }}">{{ brand.DOCS_URL }}</a>
  76. and <a href="{{ brand.GIT_URL }}">{{ brand.GIT_URL }}</a>
  77. </p>
  78. </div>
  79. {% include "__common__/aboutextend.html" ignore missing %}