worker_processes auto; pid /tmp/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; client_max_body_size 0; gzip on; gzip_types text/plain text/css application/javascript application/json application/wasm; gzip_min_length 1000; server { listen 7860; server_name _; root /usr/share/nginx/html; index index.html; location / { try_files $uri $uri/ /index.html; } location ~* \.parquet$ { expires -1; add_header Cache-Control "no-cache, no-store, must-revalidate"; } location ~* \.(js|css|wasm|map)$ { expires 7d; add_header Cache-Control "public, immutable"; } } }