Files
2026-07-02 18:39:11 +05:30

22 lines
469 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/css application/javascript application/json image/svg+xml font/woff2;
gzip_min_length 1024;
# Hashed build assets can be cached forever.
location /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# SPA fallback.
location / {
try_files $uri $uri/ /index.html;
}
}