feat: launch Roncarve Harness product page

This commit is contained in:
2026-08-22 21:49:25 +08:00
parent 28574f367a
commit 9cfbb95b1e
18 changed files with 3561 additions and 13 deletions
+9
View File
@@ -5,10 +5,19 @@ server {
root /usr/share/nginx/html;
index index.html;
location = /products/roncarve-harness {
return 301 /products/roncarve-harness/;
}
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.html$ {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location ~* \.(?:css|js|png|jpg|jpeg|gif|svg|webp|ico|woff2?)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800, immutable";