2020-02-04 15:42:13 +00:00
|
|
|
.. _installation apache:
|
|
|
|
|
|
|
|
===================
|
|
|
|
Install with apache
|
|
|
|
===================
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. _Apache: https://httpd.apache.org/
|
|
|
|
.. _Apache Debian:
|
|
|
|
https://cwiki.apache.org/confluence/display/HTTPD/DistrosDefaultLayout#DistrosDefaultLayout-Debian,Ubuntu(Apachehttpd2.x):
|
|
|
|
.. _README.Debian:
|
|
|
|
https://salsa.debian.org/apache-team/apache2/raw/master/debian/apache2.README.Debian
|
|
|
|
.. _Apache Arch Linux:
|
|
|
|
https://wiki.archlinux.org/index.php/Apache_HTTP_Server
|
|
|
|
.. _Apache Fedora:
|
|
|
|
https://docs.fedoraproject.org/en-US/quick-docs/getting-started-with-apache-http-server/index.html
|
|
|
|
.. _Apache directives:
|
|
|
|
https://httpd.apache.org/docs/trunk/mod/directives.html
|
|
|
|
.. _Getting Started:
|
|
|
|
https://httpd.apache.org/docs/current/en/getting-started.html
|
|
|
|
.. _Terms Used to Describe Directives:
|
|
|
|
https://httpd.apache.org/docs/current/en/mod/directive-dict.html
|
|
|
|
.. _Configuration Files:
|
|
|
|
https://httpd.apache.org/docs/current/en/configuring.html
|
|
|
|
.. _ProxyPreserveHost: https://httpd.apache.org/docs/trunk/mod/mod_proxy.html#proxypreservehost
|
|
|
|
.. _LoadModule:
|
|
|
|
https://httpd.apache.org/docs/2.4/mod/mod_so.html#loadmodule
|
|
|
|
.. _DocumentRoot:
|
|
|
|
https://httpd.apache.org/docs/trunk/mod/core.html#documentroot
|
|
|
|
.. _Location:
|
|
|
|
https://httpd.apache.org/docs/trunk/mod/core.html#location
|
|
|
|
.. _uWSGI Apache support:
|
|
|
|
https://uwsgi-docs.readthedocs.io/en/latest/Apache.html
|
|
|
|
.. _mod_proxy_uwsgi:
|
|
|
|
https://uwsgi-docs.readthedocs.io/en/latest/Apache.html#mod-proxy-uwsgi
|
|
|
|
|
|
|
|
.. sidebar:: further read
|
|
|
|
|
|
|
|
- `Apache Arch Linux`_
|
|
|
|
- `Apache Debian`_ and `README.Debian`_
|
|
|
|
- `Apache Fedora`_
|
|
|
|
- `Apache directives`_
|
2020-02-04 15:42:13 +00:00
|
|
|
|
|
|
|
.. contents:: Contents
|
|
|
|
:depth: 2
|
|
|
|
:local:
|
|
|
|
:backlinks: entry
|
|
|
|
|
2020-04-09 13:04:23 +00:00
|
|
|
----
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
**Install** :ref:`apache searxng site` using :ref:`filtron.sh <filtron.sh overview>`
|
2020-04-09 13:04:23 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
$ sudo -H ./utils/filtron.sh apache install
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
**Install** :ref:`apache searxng site` using :ref:`morty.sh <morty.sh overview>`
|
2020-04-09 13:04:23 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
$ sudo -H ./utils/morty.sh apache install
|
|
|
|
|
|
|
|
----
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
The apache HTTP server
|
|
|
|
======================
|
|
|
|
|
|
|
|
If Apache_ is not installed, install it now. If apache_ is new to you, the
|
|
|
|
`Getting Started`_, `Configuration Files`_ and `Terms Used to Describe
|
|
|
|
Directives`_ documentation gives first orientation. There is also a list of
|
|
|
|
`Apache directives`_ *to keep in the pocket*.
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H apt-get install apache2
|
|
|
|
|
|
|
|
.. group-tab:: Arch Linux
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H pacman -S apache
|
|
|
|
sudo -H systemctl enable httpd
|
|
|
|
sudo -H systemctl start http
|
|
|
|
|
|
|
|
.. group-tab:: Fedora / RHEL
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H dnf install httpd
|
|
|
|
sudo -H systemctl enable httpd
|
|
|
|
sudo -H systemctl start httpd
|
|
|
|
|
|
|
|
Now at http://localhost you should see any kind of *Welcome* or *Test* page.
|
|
|
|
How this default intro site is configured, depends on the linux distribution
|
|
|
|
(compare `Apache directives`_).
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
less /etc/apache2/sites-enabled/000-default.conf
|
|
|
|
|
|
|
|
In this file, there is a line setting the `DocumentRoot`_ directive:
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
DocumentRoot /var/www/html
|
|
|
|
|
|
|
|
And the *welcome* page is the HTML file at ``/var/www/html/index.html``.
|
|
|
|
|
|
|
|
.. group-tab:: Arch Linux
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
less /etc/httpd/conf/httpd.conf
|
|
|
|
|
|
|
|
In this file, there is a line setting the `DocumentRoot`_ directive:
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
DocumentRoot "/srv/http"
|
|
|
|
<Directory "/srv/http">
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride None
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
The *welcome* page of Arch Linux is a page showing directory located at
|
|
|
|
``DocumentRoot``. This is *directory* page is generated by the Module
|
|
|
|
`mod_autoindex <https://httpd.apache.org/docs/2.4/mod/mod_autoindex.html>`_:
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
LoadModule autoindex_module modules/mod_autoindex.so
|
|
|
|
...
|
|
|
|
Include conf/extra/httpd-autoindex.conf
|
|
|
|
|
|
|
|
.. group-tab:: Fedora / RHEL
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
less /etc/httpd/conf/httpd.conf
|
|
|
|
|
|
|
|
In this file, there is a line setting the ``DocumentRoot`` directive:
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
DocumentRoot "/var/www/html"
|
|
|
|
...
|
|
|
|
<Directory "/var/www">
|
|
|
|
AllowOverride None
|
|
|
|
# Allow open access:
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
|
|
|
|
On fresh installations, the ``/var/www`` is empty and the *default
|
|
|
|
welcome page* is shown, the configuration is located at::
|
|
|
|
|
|
|
|
less /etc/httpd/conf.d/welcome.conf
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
.. _apache searxng site:
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
Apache Reverse Proxy
|
|
|
|
====================
|
|
|
|
|
|
|
|
.. sidebar:: public to the internet?
|
|
|
|
|
2021-09-12 06:36:56 +00:00
|
|
|
If your SearXNG instance is public, stop here and first install :ref:`filtron
|
2020-04-06 15:59:06 +00:00
|
|
|
reverse proxy <filtron.sh>` and :ref:`result proxy morty <morty.sh>`, see
|
2021-09-12 06:36:56 +00:00
|
|
|
:ref:`installation scripts`. If already done, follow setup: *SearXNG via
|
2020-04-06 15:59:06 +00:00
|
|
|
filtron plus morty*.
|
|
|
|
|
|
|
|
To setup a Apache revers proxy you have to enable the *headers* and *proxy*
|
2021-09-12 06:36:56 +00:00
|
|
|
modules and create a `Location`_ configuration for the SearXNG site. In most
|
2020-04-07 16:31:51 +00:00
|
|
|
distributions you have to un-comment the lines in the main configuration file,
|
|
|
|
except in :ref:`The Debian Layout`.
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
|
|
|
In the Apache setup, enable headers and proxy modules:
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H a2enmod headers
|
|
|
|
sudo -H a2enmod proxy
|
|
|
|
sudo -H a2enmod proxy_http
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
In :ref:`The Debian Layout` you create a ``searxng.conf`` with the
|
2020-04-06 15:59:06 +00:00
|
|
|
``<Location /searx >`` directive and save this file in the *sites
|
|
|
|
available* folder at ``/etc/apache2/sites-available``. To enable the
|
2021-11-18 17:27:26 +00:00
|
|
|
``searxng.conf`` use :man:`a2ensite`:
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
sudo -H a2ensite searxng.conf
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
.. group-tab:: Arch Linux
|
|
|
|
|
|
|
|
In the ``/etc/httpd/conf/httpd.conf`` file, activate headers and proxy
|
|
|
|
modules (LoadModule_):
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
FIXME needs test
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
LoadModule headers_module modules/mod_headers.so
|
|
|
|
LoadModule proxy_module modules/mod_proxy.so
|
|
|
|
LoadModule proxy_http_module modules/mod_proxy_http.so
|
|
|
|
|
|
|
|
.. group-tab:: Fedora / RHEL
|
|
|
|
|
|
|
|
In the ``/etc/httpd/conf/httpd.conf`` file, activate headers and proxy
|
|
|
|
modules (LoadModule_):
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
FIXME needs test
|
|
|
|
|
|
|
|
LoadModule headers_module modules/mod_headers.so
|
2020-04-06 15:59:06 +00:00
|
|
|
LoadModule proxy_module modules/mod_proxy.so
|
|
|
|
LoadModule proxy_http_module modules/mod_proxy_http.so
|
|
|
|
|
2021-01-27 08:58:06 +00:00
|
|
|
With ProxyPreserveHost_ the incoming Host HTTP request header is passed to the
|
|
|
|
proxied host.
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
.. _apache searxng via filtron plus morty:
|
2021-01-27 08:58:06 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. tabs::
|
|
|
|
|
2021-09-12 06:36:56 +00:00
|
|
|
.. group-tab:: SearXNG via filtron plus morty
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
Use this setup, if your instance is public to the internet, compare
|
|
|
|
figure: :ref:`architecture <arch public>` and :ref:`installation scripts`.
|
|
|
|
|
|
|
|
1. Configure a reverse proxy for :ref:`filtron <filtron.sh>`, listening on
|
|
|
|
*localhost 4004* (:ref:`filtron route request`):
|
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
<Location /searx >
|
|
|
|
|
|
|
|
# SetEnvIf Request_URI "/searx" dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
|
|
|
|
Require all granted
|
|
|
|
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
#Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
|
|
|
ProxyPreserveHost On
|
|
|
|
ProxyPass http://127.0.0.1:4004
|
|
|
|
RequestHeader set X-Script-Name /searx
|
|
|
|
|
|
|
|
</Location>
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
2. Configure reverse proxy for :ref:`morty <searxng morty>`, listening on
|
2020-04-07 16:31:51 +00:00
|
|
|
*localhost 3000*
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
|
|
|
ProxyPreserveHost On
|
|
|
|
|
|
|
|
<Location /morty >
|
|
|
|
|
|
|
|
# SetEnvIf Request_URI "/morty" dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
|
|
|
|
Require all granted
|
|
|
|
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
#Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
|
|
|
ProxyPass http://127.0.0.1:3000
|
|
|
|
RequestHeader set X-Script-Name /morty
|
|
|
|
|
|
|
|
</Location>
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
For a fully result proxification add :ref:`morty's <searxng morty>` **public
|
2021-01-27 08:58:06 +00:00
|
|
|
URL** to your :origin:`searx/settings.yml`:
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
result_proxy:
|
|
|
|
# replace example.org with your server's public name
|
|
|
|
url : https://example.org/morty
|
2021-01-27 08:58:06 +00:00
|
|
|
key : !!binary "insert_your_morty_proxy_key_here"
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
server:
|
|
|
|
image_proxy : True
|
|
|
|
|
|
|
|
uWSGI support
|
|
|
|
=============
|
|
|
|
|
2021-11-18 17:27:26 +00:00
|
|
|
Be warned, with this setup, your instance isn't :ref:`protected <searxng
|
2020-04-07 16:31:51 +00:00
|
|
|
filtron>`, nevertheless it is good enough for intranet usage. In modern Linux
|
|
|
|
distributions, the `mod_proxy_uwsgi`_ is compiled into the *normal* apache
|
2021-11-18 17:27:26 +00:00
|
|
|
package and you need to install only the :ref:`uWSGI <searxng uwsgi>` package:
|
2020-02-04 15:42:13 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
sudo -H apt-get install uwsgi
|
|
|
|
|
|
|
|
# Ubuntu =< 18.04
|
|
|
|
sudo -H apt-get install libapache2-mod-proxy-uwsgi
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. group-tab:: Arch Linux
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H pacman -S uwsgi
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. group-tab:: Fedora / RHEL
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. code:: sh
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
sudo -H dnf install uwsgi
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
The next example shows a configuration using the `uWSGI Apache support`_ via
|
2020-04-07 16:31:51 +00:00
|
|
|
unix sockets and `mod_proxy_uwsgi`_.
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
For socket communication, you have to activate ``socket =
|
|
|
|
/run/uwsgi/app/searx/socket`` and comment out the ``http = 127.0.0.1:8888``
|
|
|
|
configuration in your :ref:`uwsgi ini file <uwsgi configuration>`. If not
|
|
|
|
already exists, create a folder for the unix sockets, which can be used by the
|
2021-11-18 17:27:26 +00:00
|
|
|
SearXNG account (see :ref:`create searxng user`):
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. code:: bash
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
sudo -H mkdir -p /run/uwsgi/app/searx/
|
|
|
|
sudo -H chown -R searx:searx /run/uwsgi/app/searx/
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
If the server is public; to limit access to your intranet replace ``Allow from
|
|
|
|
all`` directive and replace ``192.168.0.0/16`` with your subnet IP/class.
|
2020-02-04 15:42:13 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. code:: apache
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
LoadModule headers_module /usr/lib/apache2/mod_headers.so
|
|
|
|
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
|
|
|
|
LoadModule proxy_uwsgi_module /usr/lib/apache2/modules/mod_proxy_uwsgi.so
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
# SetEnvIf Request_URI /searx dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
<Location /searx>
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
Require all granted
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
ProxyPreserveHost On
|
|
|
|
ProxyPass unix:/run/uwsgi/app/searx/socket|uwsgi://uwsgi-uds-searx/
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
</Location>
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
.. group-tab:: Arch Linux
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
.. code:: apache
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
FIXME needs test
|
|
|
|
|
|
|
|
LoadModule proxy_module modules/mod_proxy.so
|
|
|
|
LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so
|
|
|
|
|
|
|
|
# SetEnvIf Request_URI /searx dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
|
|
|
|
<Location /searx>
|
|
|
|
|
|
|
|
Require all granted
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
|
|
|
ProxyPreserveHost On
|
|
|
|
ProxyPass unix:/run/uwsgi/app/searx/socket|uwsgi://uwsgi-uds-searx/
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
</Location>
|
|
|
|
|
|
|
|
.. group-tab:: Fedora / RHEL
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
.. code:: apache
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
FIXME needs test
|
|
|
|
|
|
|
|
LoadModule proxy_module modules/mod_proxy.so
|
|
|
|
LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so
|
2020-04-06 15:59:06 +00:00
|
|
|
<IfModule proxy_uwsgi_module>
|
|
|
|
|
|
|
|
# SetEnvIf Request_URI /searx dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
|
|
|
|
<Location /searx>
|
|
|
|
|
|
|
|
Require all granted
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
|
|
|
ProxyPreserveHost On
|
|
|
|
ProxyPass unix:/run/uwsgi/app/searx/socket|uwsgi://uwsgi-uds-searx/
|
|
|
|
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
</IfModule>
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
.. group-tab:: old mod_wsgi
|
2020-04-06 15:59:06 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
We show this only for historical reasons, DON'T USE `mod_uwsgi
|
|
|
|
<https://uwsgi-docs.readthedocs.io/en/latest/Apache.html#mod-uwsgi>`_.
|
|
|
|
ANYMORE!
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
.. code:: apache
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
<IfModule mod_uwsgi.c>
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
# SetEnvIf Request_URI "/searx" dontlog
|
2020-04-06 15:59:06 +00:00
|
|
|
# CustomLog /dev/null combined env=dontlog
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
<Location /searx >
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
Require all granted
|
2020-04-07 16:31:51 +00:00
|
|
|
|
|
|
|
Options FollowSymLinks Indexes
|
|
|
|
SetHandler uwsgi-handler
|
|
|
|
uWSGISocket /run/uwsgi/app/searx/socket
|
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
</Location>
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
.. _restart apache:
|
|
|
|
|
|
|
|
Restart service
|
|
|
|
===============
|
2020-02-04 15:42:13 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: Ubuntu / debian
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H systemctl restart apache2
|
2020-04-06 15:59:06 +00:00
|
|
|
sudo -H service uwsgi restart searx
|
|
|
|
|
|
|
|
.. group-tab:: Arch Linux
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H systemctl restart httpd
|
|
|
|
sudo -H systemctl restart uwsgi@searx
|
|
|
|
|
|
|
|
.. group-tab:: Fedora / RHEL
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
sudo -H systemctl restart httpd
|
2021-10-11 19:20:22 +00:00
|
|
|
sudo -H touch /etc/uwsgi.d/searxng.ini
|
2020-04-06 15:59:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
disable logs
|
|
|
|
============
|
|
|
|
|
|
|
|
For better privacy you can disable Apache logs. In the examples above activate
|
|
|
|
one of the lines and `restart apache`_::
|
|
|
|
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
# SetEnvIf Request_URI "/searx" dontlog
|
|
|
|
# CustomLog /dev/null combined env=dontlog
|
2020-02-04 15:42:13 +00:00
|
|
|
|
2020-04-06 15:59:06 +00:00
|
|
|
The ``CustomLog`` directive disable logs for the whole (virtual) server, use it
|
|
|
|
when the URL of the service does not have a path component (``/searx``) / is
|
|
|
|
located at root (``/``).
|
2020-04-07 16:31:51 +00:00
|
|
|
|
|
|
|
.. _The Debian Layout:
|
|
|
|
|
|
|
|
The Debian Layout
|
|
|
|
=================
|
|
|
|
|
|
|
|
Be aware that the Debian layout is quite different from the standard Apache
|
|
|
|
configuration. For details look at the README.Debian_
|
|
|
|
(``/usr/share/doc/apache2/README.Debian.gz``). Some commands you should know on
|
|
|
|
Debian:
|
|
|
|
|
|
|
|
* :man:`apache2ctl`: Apache HTTP server control interface
|
|
|
|
* :man:`a2enmod`, :man:`a2dismod`: switch on/off modules
|
|
|
|
* :man:`a2enconf`, :man:`a2disconf`: switch on/off configurations
|
|
|
|
* :man:`a2ensite`, :man:`a2dissite`: switch on/off sites
|