Initial: JustVitamin AI Content Engine proposal site with 3 interactive demos

This commit is contained in:
2026-03-02 19:29:47 +08:00
commit 26532ade3c
7 changed files with 2317 additions and 0 deletions

32
nginx.conf Normal file
View File

@@ -0,0 +1,32 @@
server {
listen 80;
server_name justvitamin.quikcue.com;
root /usr/share/nginx/html;
index index.html;
absolute_redirect off;
location / {
try_files $uri $uri/ =404;
}
location /css/ {
expires 7d;
add_header Cache-Control "public, immutable";
}
location /js/ {
expires 7d;
add_header Cache-Control "public, immutable";
}
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
gzip on;
gzip_types text/html text/css application/javascript text/plain;
gzip_min_length 256;
error_page 404 /404.html;
}