libremiami-search/searx/templates/about.html

1.2 KiB

{% extends 'base.html' %} {% block content %} {% include 'header.html' %}

About searx

searx is a meta-search engine inspired by the seeks-project.
You can add it to your browsers search bar and even make it your default search engine.
It tries to provide basic privacy by mixing your queries with queries from others while avoiding logging of queries. For all browsers (except chrom*) queries are made using a POST request. Thus they don't show up in our logs, nor in your url history. For chrome users there is an exception searx is used from the search bar, it issues GET requests.

Supported engines

{% for (categ,search_engines) in categs %}

{{ categ.capitalize() }} category

    {% for search_engine in search_engines %}
  • {{ search_engine.name }}
  • {% endfor %}
{% endfor %}

FAQ

Trust

It's ok if you don't trust us regarding the logs, take the code and run it yourself for your friends! decentralize!

please add more engines to this list, pull request are welcome!

{% endblock %}