add redirects support

This commit is contained in:
2024-01-01 14:37:24 +01:00
parent 5902732262
commit 6d3c345e75
4 changed files with 25 additions and 1 deletions

16
nginx/default.conf Normal file
View File

@ -0,0 +1,16 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
if ($new_uri != "") {
rewrite ^(.*)$ $new_uri permanent;
}
}
error_page 404 /404.html;
}