starbase-81/default.conf
Jordan Roher 91637e8c31 Updated readme
Removed more files
2023-12-18 13:46:15 -08:00

17 lines
359 B
Plaintext

server {
listen 4173;
root /app/public;
location /app {
try_files $uri $uri/ =404;
# Cache settings for static content
expires 7d; # Cache static content for 7 days
add_header Cache-Control "public, max-age=604800, immutable";
}
error_page 404 /index.html;
error_page 500 502 503 504 /index.html;
}