summaryrefslogtreecommitdiff
path: root/docs/dev/install
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/install')
-rw-r--r--docs/dev/install/installation.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/dev/install/installation.rst b/docs/dev/install/installation.rst
index e15ff8b25..cbbd25f57 100644
--- a/docs/dev/install/installation.rst
+++ b/docs/dev/install/installation.rst
@@ -179,6 +179,24 @@ Add this configuration in the server config file
uwsgi_pass unix:/run/uwsgi/app/searx/socket;
}
+
+OR
+
+using reverse proxy
+(Please, note that reverse proxy advised to be used in case of single-user or low-traffic instances.)
+
+.. code:: nginx
+
+ location /searx {
+ proxy_pass http://127.0.0.1:8888;
+ proxy_set_header Host $host;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Scheme $scheme;
+ proxy_set_header X-Script-Name /searx;
+ proxy_buffering off;
+ }
+
+
Enable base\_url in searx/settings.yml
::