diff options
author | blob42 <spike@w530> | 2023-02-12 18:32:29 +0100 |
---|---|---|
committer | blob42 <spike@w530> | 2023-02-12 18:33:38 +0100 |
commit | 27809c84f8f453d6c865f1654f44becf8a8c2f9e (patch) | |
tree | 1abb8ad4297a742bcec3829223262425c0b2f802 /docs/admin | |
parent | 675dc04917dadac60ebd4c28a1f5b1e2baba4cfa (diff) | |
download | searxng-27809c84f8f453d6c865f1654f44becf8a8c2f9e.tar.gz searxng-27809c84f8f453d6c865f1654f44becf8a8c2f9e.zip |
[doc] add example for enabling an engine disabled by default
Diffstat (limited to 'docs/admin')
-rw-r--r-- | docs/admin/engines/settings.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/admin/engines/settings.rst b/docs/admin/engines/settings.rst index 97f5ef63e..e8d00ec1f 100644 --- a/docs/admin/engines/settings.rst +++ b/docs/admin/engines/settings.rst @@ -657,8 +657,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using: ``engines:`` With ``use_default_settings: true``, each settings can be override in a similar way, the ``engines`` section is merged according to the engine - ``name``. In this example, SearXNG will load all the engine and the arch linux - wiki engine has a :ref:`token <private engines>`: + ``name``. In this example, SearXNG will load all the default engines, will + enable the ``bing`` engine and define a :ref:`token <private engines>` for + the arch linux engine: .. code-block:: yaml @@ -668,6 +669,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using: engines: - name: arch linux wiki tokens: ['$ecretValue'] + - name: bing + disabled: false + ``engines:`` / ``remove:`` It is possible to remove some engines from the default settings. The following |