511caf1c78
Flattens Prusa's three-document route (INDX guide, Gen 2 upgrade guide, and the combined article) into one linear list of 13 blocks with entry and stop points. Progress is kept in localStorage; no backend. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
18 lines
320 B
Nginx Configuration File
18 lines
320 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
|
|
gzip on;
|
|
gzip_types text/css application/javascript image/svg+xml;
|
|
gzip_min_length 1024;
|
|
|
|
location /assets/ {
|
|
add_header Cache-Control "public, max-age=31536000, immutable";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|