diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/admin/settings/settings_plugins.rst | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/admin/settings/settings_plugins.rst b/docs/admin/settings/settings_plugins.rst index 6e7b7bd6c..a6baa6051 100644 --- a/docs/admin/settings/settings_plugins.rst +++ b/docs/admin/settings/settings_plugins.rst @@ -25,6 +25,38 @@ transferred to the plugin, e.g. to activate it by default / *opt-in* or Please note that some plugins, such as the :ref:`hostnames plugin` plugin, require further configuration before they can be made available for selection. +By default the :ref:`settings built in plugins` are loaded. To change the list +of plugins to be loaded, the value for ``plugins:`` in +``/etc/searxng/settings.yml`` must be overwritten. + +Following is an example that uses :ref:`settings use_default_settings` and only +two plugins are registered: the calculator can be activated by the user and the +unit converter is active by default. + + +.. code:: yaml + + use_default_settings: true + + plugins: + + searx.plugins.calculator.SXNGPlugin: + active: false + + searx.plugins.unit_converter.SXNGPlugin: + active: true + +To prevent any plugins from loading, the following setting can be used: + +.. code:: yaml + + use_default_settings: true + + plugins: {} + + +.. _settings built in plugins: + built-in plugins ================ |