ruvector/examples/vwm-viewer/nginx.conf
rUv 8c36eae2da feat(vwm-viewer): add hyper-realistic Super Bowl LX visualization
4D Gaussian splatting demo deployed to Cloud Run at
ruvector-vwm-875130704813.us-central1.run.app

- football.html: Patriots vs Seahawks with 4000+ gaussians/frame,
  ESPN-style scorebug, 5 camera modes, play simulation engine,
  particle effects, atmospheric fog, post-processing pipeline
- canvas-viewer.html: Canvas2D fallback for generic VWM viewing
- Dockerfile + nginx.conf: Cloud Run deployment config

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 22:39:31 +00:00

17 lines
355 B
Nginx Configuration File

server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index football.html index.html;
location / {
try_files $uri $uri/ /football.html;
}
location ~* \.(html|js|css)$ {
add_header Cache-Control "public, max-age=3600";
}
gzip on;
gzip_types text/html text/css application/javascript;
}