mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 02:22:22 +02:00
Merge branch 'master' of https://github.com/asciimoo/searx into filtron
This commit is contained in:
commit
6fc26775e4
19 changed files with 65 additions and 27 deletions
|
@ -26,6 +26,8 @@ Safe search **SS**
|
|||
Weigth **W**
|
||||
------------- ----------- ---------------------------------
|
||||
Disabled **D**
|
||||
------------- ----------- ---------------------------------
|
||||
Show errors **DE**
|
||||
============= =========== =================================
|
||||
|
||||
Configuration defaults (at built time):
|
||||
|
@ -51,6 +53,7 @@ Configuration defaults (at built time):
|
|||
- O
|
||||
- W
|
||||
- D
|
||||
- DE
|
||||
|
||||
{% for name, mod in engines.items() %}
|
||||
|
||||
|
@ -67,5 +70,6 @@ Configuration defaults (at built time):
|
|||
- {{(mod.offline and "y") or ""}}
|
||||
- {{mod.weight or 1 }}
|
||||
- {{(mod.disabled and "y") or ""}}
|
||||
- {{(mod.display_error_messages and "y") or ""}}
|
||||
|
||||
{% endfor %}
|
||||
|
|
|
@ -104,7 +104,7 @@ Global Settings
|
|||
specific instance of searx, a locale can be defined using an ISO language
|
||||
code, like ``fr``, ``en``, ``de``.
|
||||
|
||||
.. _requests proxies: http://docs.python-requests.org/en/latest/user/advanced/#proxies
|
||||
.. _requests proxies: http://requests.readthedocs.io/en/latest/user/advanced/#proxies
|
||||
.. _PR SOCKS support: https://github.com/kennethreitz/requests/pull/478
|
||||
|
||||
``outgoing_proxies`` :
|
||||
|
@ -181,6 +181,9 @@ Engine settings
|
|||
``weigth`` : default ``1``
|
||||
Weighting of the results of this engine.
|
||||
|
||||
``display_error_messages`` : default ``True``
|
||||
When an engine returns an error, the message is displayed on the user interface.
|
||||
|
||||
.. note::
|
||||
|
||||
A few more options are possible, but they are pretty specific to some
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue