Add static assets to nginx

This commit is contained in:
2023-09-18 15:03:44 +02:00
committed by Clément Le Bihan
parent 49a735631a
commit 94658d4379
9 changed files with 73 additions and 10 deletions
+4
View File
@@ -4,6 +4,10 @@ server {
index index.html;
location /assets {
alias ./assets;
}
location / {
try_files $uri $uri/ /index.html;
}