diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-06 15:04:12 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-06 15:04:12 +0100 |
commit | 857a1458b18476e18f1df9e338ba270c4ff2e35d (patch) | |
tree | a566954cb5201c8ba23dfc77d307bd0157569b3b /docs | |
parent | 387c6a77691fec514704bdf178b9ab94ad4abb40 (diff) | |
download | searxng-857a1458b18476e18f1df9e338ba270c4ff2e35d.tar.gz searxng-857a1458b18476e18f1df9e338ba270c4ff2e35d.zip |
docs: for example URLs use iana's example.org
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin/installation-nginx.rst | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/admin/installation-nginx.rst b/docs/admin/installation-nginx.rst index 0b3ea022f..264bdacda 100644 --- a/docs/admin/installation-nginx.rst +++ b/docs/admin/installation-nginx.rst @@ -180,8 +180,8 @@ Started wiki`_ is always a good resource *to keep in the pocket*. .. code:: yaml result_proxy: - # replace searx.example.com with your server's public name - url : http://searx.example.com/ + # replace example.org with your server's public name + url : https://example.org/ .. group-tab:: proxy or uWSGI @@ -221,8 +221,8 @@ Started wiki`_ is always a good resource *to keep in the pocket*. .. code:: nginx server { - # replace searx.example.com with your server's public name - server_name searx.example.com; + # replace example.org with your server's public name + server_name example.org; listen 80; listen [::]:80; @@ -248,8 +248,7 @@ Started wiki`_ is always a good resource *to keep in the pocket*. Be warned, with these setups, your Instance isn't :ref:`protected <searx filtron>`. The examples are just here to demonstrate how to export the - searx application from a subdirectory URL - http://searx.example.com/searx/\. + searx application from a subdirectory URL ``https://example.org/searx/``. .. code:: nginx @@ -290,8 +289,8 @@ Started wiki`_ is always a good resource *to keep in the pocket*. .. code:: yaml server: - # replace searx.example.com with your server's public name - base_url : http://searx.example.com/searx/ + # replace example.org with your server's public name + base_url : https://example.org/searx/ Restart service: |