Files
Wackelpeter/nginx.conf
T

23 lines
436 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# gzip
gzip on;
gzip_types text/css application/javascript application/json image/svg+xml;
# GLB models and assets
location ~* \.(glb|gltf|ogg|png|jpg|json)$ {
expires 7d;
add_header Cache-Control "public";
}
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
}