Browse Source

Simply Nginx example by using alias directive for subdirectory URL

We explicitly specific the static directory here using alias to allow to
host from a other subdirectory than "searx" which just so happens to
match the source code directory.
Robin Schneider 5 years ago
parent
commit
088337295a
1 changed files with 1 additions and 4 deletions
  1. 1 4
      docs/admin/installation.rst

+ 1 - 4
docs/admin/installation.rst

@@ -183,11 +183,8 @@ Add this configuration in the server config file
 
 .. code:: nginx
 
-    location = /searx {
-            rewrite ^ /searx/;
-    }
-
     location /searx/static {
+            alias /usr/local/searx/searx/static;
     }
 
     location /searx {