diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-19 11:46:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-19 11:46:29 +0100 |
| commit | e82e37ce6dffe2796b0fae63d893ad637c2be37b (patch) | |
| tree | 49689668e8de24b0a2d244b227467da4db5be22d /docs/admin/update-searxng.rst | |
| parent | 55737a219b0c91882a7d512312cc8f545108f8e8 (diff) | |
| parent | 1dae0c0be09d5c9e287bdea6aa5bf7ec4f4782ec (diff) | |
Merge pull request #515 from return42/doc-theme
Various modification of the documentation and the theme sphinx-theme
Diffstat (limited to 'docs/admin/update-searxng.rst')
| -rw-r--r-- | docs/admin/update-searxng.rst | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/admin/update-searxng.rst b/docs/admin/update-searxng.rst new file mode 100644 index 000000000..4c541bf57 --- /dev/null +++ b/docs/admin/update-searxng.rst @@ -0,0 +1,59 @@ +.. _update searxng: + +============= +How to update +============= + +How to update depends on the :ref:`installation` method. If you have used the +:ref:`installation scripts`, use ``update`` command from the scripts. + +**Update** :ref:`SearXNG service <searx.sh>` + +.. code:: sh + + sudo -H ./utils/searx.sh update searx + +**Update** :ref:`filtron reverse proxy <filtron.sh>` + +.. code:: sh + + sudo -H ./utils/filtron.sh update filtron + +**Update** :ref:`result proxy <morty.sh>` + +.. code:: bash + + $ sudo -H ./utils/morty.sh update morty + +.. _inspect searxng: + +====================== +How to inspect & debug +====================== + +.. sidebar:: further read + + - :ref:`toolboxing` + - :ref:`Makefile` + +How to debug depends on the :ref:`installation` method. If you have used the +:ref:`installation scripts`, use ``inspect`` command from the scripts. + +**Inspect** :ref:`SearXNG service <searx.sh>` + +.. code:: sh + + sudo -H ./utils/searx.sh inspect service + +**Inspect** :ref:`filtron reverse proxy <filtron.sh>` + +.. code:: sh + + sudo -H ./utils/filtron.sh inspect service + +**Inspect** :ref:`result proxy <morty.sh>` + +.. code:: bash + + $ sudo -H ./utils/morty.sh inspect service + |