1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .. _searx.sh:
- ==================
- ``utils/searx.sh``
- ==================
- .. sidebar:: further reading
- - :ref:`installation`
- - :ref:`architecture`
- - :ref:`filtron.sh`
- To simplify installation and maintenance of a searx instance you can use the
- script :origin:`utils/searx.sh`.
- Install
- =======
- In most cases you will install searx simply by running the command:
- .. code:: bash
- sudo -H ./utils/searx.sh install all
- The script adds a ``${SERVICE_USER}`` (default:``searx``) and installs searx
- into this user account. The installation is described in chapter
- :ref:`installation basic`.
- .. _intranet reverse proxy:
- Overview
- ========
- The ``--help`` output of the script is largely self-explanatory
- (:ref:`toolboxing common`):
- .. program-output:: ../utils/searx.sh --help
- Intranet Reverse Proxy
- ======================
- .. warning::
- This setup is **not** suitable **for public instances**, go on with
- :ref:`reverse proxy`!
- To install searx in your intranet HTTP server use:
- .. code:: bash
- sudo -H ./utils/searx.sh apache install
- .. tabs::
- .. group-tab:: apache
- .. literalinclude:: ../../utils/templates/etc/apache2/sites-available/searx.conf:uwsgi
- :language: apache
- .. tabs::
- .. group-tab:: Ubuntu / debian
- .. code-block:: sh
- $ sudo -H apt install libapache2-mod-uwsgi
- .. group-tab:: Arch Linux
- .. code-block:: sh
- $ sudo -H pacman -S uwsgi
- .. group-tab:: Fedora / RHEL
- .. code-block:: sh
- $ sudo -H dnf install uwsgi
|