using astro
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-11 08:29:29 +02:00
parent 8e40b8599b
commit 830585e2ba
15 changed files with 5371 additions and 15 deletions

View file

@ -3,7 +3,7 @@ server {
listen [::]:80;
server_name _;
root /usr/share/nginx/html/website;
root /usr/share/nginx/html/dist;
index index.html;
location ~ /\. {
@ -15,17 +15,17 @@ server {
}
location /assets/ {
alias /usr/share/nginx/html/assets/;
alias /usr/share/nginx/html/dist/assets/;
try_files $uri =404;
}
location /css/ {
alias /usr/share/nginx/html/css/;
alias /usr/share/nginx/html/dist/css/;
try_files $uri =404;
}
location /js/ {
alias /usr/share/nginx/html/js/;
alias /usr/share/nginx/html/dist/js/;
try_files $uri =404;
}
}