feat(nginx): Fixed going to / not working

This commit is contained in:
Maieul BOYER 2025-12-04 16:03:52 +01:00 committed by apetitco
parent 3140da7bab
commit bb7037d515
2 changed files with 8 additions and 2 deletions

View file

@ -3,6 +3,10 @@ location /app {
try_files /index.html =404;
}
location /assets {
location /assets {
root /volumes/static/app/;
}
location / {
return 301 https://$http_host/app;
}