Files
timothykim.net/nginx.conf
T
timothykim 59578645c9
Build and Push Docker Image / build (push) Successful in 8s
remove watchtower
2026-03-12 09:45:21 -04:00

18 lines
382 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Clean URLs — serve index.html for directories
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets aggressively
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}