First template
Some checks failed
Deploy Hugo site / deploy (push) Failing after 47s

This commit is contained in:
2026-03-16 22:25:02 +01:00
parent d8d15dc0ec
commit daf6b8f55f
17 changed files with 665 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
server {
listen 8090;
listen [::]:8090;
server_name portfolio.bouchard.sytes.net;
root /var/www/portfolio;
index index.html;
access_log /var/log/nginx/portfolio.access.log;
error_log /var/log/nginx/portfolio.error.log;
location / {
try_files $uri $uri/ =404;
}
location ~* \.(?:css|js|jpg|jpeg|gif|png|svg|ico|webp|woff2?)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800, immutable";
try_files $uri =404;
}
}