This commit is contained in:
2025-04-06 03:03:04 +00:00
parent 702faf2fae
commit 7bb10e7df4
2 changed files with 23 additions and 2 deletions

21
reader/nginx.conf Normal file
View File

@@ -0,0 +1,21 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
# Optional: Configure caching for static assets
location /static/ {
expires 1y;
add_header Cache-Control "public, max-age=31536000";
}
# Optional: Configure caching for build assets (adjust paths as needed)
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, max-age=31536000";
}
}