🗝
summary refs log tree commit diff
path: root/nginx/nginx.conf
diff options
context:
space:
mode:
authormia <mia@mia.jetzt>2024-07-07 10:11:04 -0700
committermia <mia@mia.jetzt>2024-07-07 10:11:04 -0700
commite66cc657e53c4e24d8ebdb19c170e6fe54301566 (patch)
tree10574370e919080edf6592684cfaede06d5c1135 /nginx/nginx.conf
parent55b4278719b1af00a858acd3065b91f527eb8fd9 (diff)
downloadasylum-e66cc657e53c4e24d8ebdb19c170e6fe54301566.tar.gz
asylum-e66cc657e53c4e24d8ebdb19c170e6fe54301566.zip
disable absolute redirects globally
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r--nginx/nginx.conf3
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;
     }