own-instance.rst 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ===========================
  2. Why use a private instance?
  3. ===========================
  4. *"Is it worth to run my own instance?"*
  5. \.\. is a common question among searx users. Before answering this question,
  6. see what options a searx user has.
  7. Public instances are open to everyone who has access to its URL. Usually, these
  8. are operated by unknown parties (from the users' point of view). Private
  9. instances can be used by a select group of people. It is for example a searx of
  10. group of friends or a company which can be accessed through VPN. Also it can be
  11. single user one which runs on the user's laptop.
  12. To gain more insight on how these instances work let's dive into how searx
  13. protects its users.
  14. How does searx protect privacy?
  15. ===============================
  16. Searx protects the privacy of its users in multiple ways regardless of the type
  17. of the instance (private, public). Removal of private data from search requests
  18. comes in three forms:
  19. 1. removal of private data from requests going to search services
  20. 2. not forwarding anything from a third party services through search services
  21. (e.g. advertisement)
  22. 3. removal of private data from requests going to the result pages
  23. Removing private data means not sending cookies to external search engines and
  24. generating a random browser profile for every request. Thus, it does not matter
  25. if a public or private instance handles the request, because it is anonymized in
  26. both cases. IP addresses will be the IP of the instance. But searx can be
  27. configured to use proxy or Tor. `Result proxy
  28. <https://github.com/asciimoo/morty>`__ is supported, too.
  29. Searx does not serve ads or tracking content unlike most search services. So
  30. private data is not forwarded to third parties who might monetize it. Besides
  31. protecting users from search services, both referring page and search query are
  32. hidden from visited result pages.
  33. What are the consequences of using public instances?
  34. ----------------------------------------------------
  35. If someone uses a public instance, they have to trust the administrator of that
  36. instance. This means that the user of the public instance does not know whether
  37. their requests are logged, aggregated and sent or sold to a third party.
  38. Also, public instances without proper protection are more vulnerable to abusing
  39. the search service, In this case the external service in exchange returns
  40. CAPTCHAs or bans the IP of the instance. Thus, search requests return less
  41. results.
  42. I see. What about private instances?
  43. ------------------------------------
  44. If users run their :ref:`own instances <installation>`, everything is in their
  45. control: the source code, logging settings and private data. Unknown instance
  46. administrators do not have to be trusted.
  47. Furthermore, as the default settings of their instance is editable, there is no
  48. need to use cookies to tailor searx to their needs. So preferences will not be
  49. reset to defaults when clearing browser cookies. As settings are stored on
  50. their computer, it will not be accessible to others as long as their computer is
  51. not compromised.
  52. Conclusion
  53. ==========
  54. Always use an instance which is operated by people you trust. The privacy
  55. features of searx are available to users no matter what kind of instance they
  56. use.
  57. If someone is on the go or just wants to try searx for the first time public
  58. instances are the best choices. Additionally, public instance are making a
  59. world a better place, because those who cannot or do not want to run an
  60. instance, have access to a privacy respecting search service.