fix: working elementary setup

This commit is contained in:
Stijnvandenbroek
2026-03-05 10:38:09 +00:00
parent 5058adf7dc
commit ca5cb9e777
4 changed files with 26 additions and 3 deletions

View File

@@ -3,9 +3,12 @@ server {
server_name _;
root /usr/share/nginx/html;
index elementary_report.html;
location = / {
return 302 /elementary_report.html;
}
location / {
try_files $uri $uri/ /elementary_report.html;
try_files $uri =404;
}
}