123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- .. _installation nginx:
- =====
- NGINX
- =====
- .. _nginx:
- https://docs.nginx.com/nginx/admin-guide/
- .. _nginx server configuration:
- https://docs.nginx.com/nginx/admin-guide/web-server/web-server/
- .. _nginx beginners guide:
- https://nginx.org/en/docs/beginners_guide.html
- .. _Getting Started wiki:
- https://www.nginx.com/resources/wiki/start/
- .. _uWSGI support from nginx:
- https://uwsgi-docs.readthedocs.io/en/latest/Nginx.html
- .. _uwsgi_params:
- https://uwsgi-docs.readthedocs.io/en/latest/Nginx.html
- .. _SCRIPT_NAME:
- https://werkzeug.palletsprojects.com/en/1.0.x/wsgi/
- This section explains how to set up a SearXNG instance using the HTTP server nginx_.
- If you have used the :ref:`installation scripts` and do not have any special preferences
- you can install the :ref:`SearXNG site <nginx searxng site>` using
- :ref:`searxng.sh <searxng.sh overview>`:
- .. code:: bash
- $ sudo -H ./utils/searxng.sh install nginx
- If you have special interests or problems with setting up nginx, the following
- section might give you some guidance.
- .. sidebar:: further reading
- - nginx_
- - `nginx beginners guide`_
- - `nginx server configuration`_
- - `Getting Started wiki`_
- - `uWSGI support from nginx`_
- .. contents:: Contents
- :depth: 2
- :local:
- :backlinks: entry
- The nginx HTTP server
- =====================
- If nginx_ is not installed, install it now.
- .. tabs::
- .. group-tab:: Ubuntu / debian
- .. code:: bash
- sudo -H apt-get install nginx
- .. group-tab:: Arch Linux
- .. code-block:: sh
- sudo -H pacman -S nginx-mainline
- sudo -H systemctl enable nginx
- sudo -H systemctl start nginx
- .. group-tab:: Fedora / RHEL
- .. code-block:: sh
- sudo -H dnf install nginx
- sudo -H systemctl enable nginx
- sudo -H systemctl start nginx
- Now at http://localhost you should see a *Welcome to nginx!* page, on Fedora you
- see a *Fedora Webserver - Test Page*. The test page comes from the default
- `nginx server configuration`_. How this default site is configured,
- depends on the linux distribution:
- .. tabs::
- .. group-tab:: Ubuntu / debian
- .. code:: bash
- less /etc/nginx/nginx.conf
- There is one line that includes site configurations from:
- .. code:: nginx
- include /etc/nginx/sites-enabled
|