diff options
Diffstat (limited to 'nginx')
-rw-r--r-- | nginx/nginx.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a5e108d..6a091b1 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -37,12 +37,13 @@ http { js_import nginx.js; js_shared_dict_zone zone=auth_token_cache:32k timeout=5m evict; + absolute_redirect off; + server { listen 80 default_server; listen [::]:80 default_server; default_type text/plain; - absolute_redirect off; root /srv/web/$host; index index.html; } |