fix www: change redirection method

This commit is contained in:
vincent 2024-01-24 18:43:26 +01:00
parent 015a89b27e
commit 43b6cf9158

View File

@ -70,7 +70,8 @@ http {
default_type text/html; default_type text/html;
} }
location =/ { location =/ {
rewrite ^ /welcome; rewrite ^ /welcome redirect;
#return 301 https://$host/welcome
} }
} }