ft_transcendence/nginx/conf/locations/app.conf
2025-12-10 17:10:13 +01:00

12 lines
177 B
Text

location /app {
root /volumes/static/app/;
try_files /index.html =404;
}
location /assets {
root /volumes/static/app/;
}
location / {
return 301 https://$http_host/app;
}