feat(nginx): Fixed going to / not working

This commit is contained in:
Maieul BOYER 2025-12-04 16:03:52 +01:00
parent c898fe8d32
commit 2ad9fe9859
No known key found for this signature in database
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;
}