Files
cms-automotivo/nginx.conf
Cauê Faleiros 090f6cff6a
Some checks failed
Build and Deploy / build-and-push (push) Failing after 12m54s
feat: Add Gitea Actions pipeline and Docker deployment config
2026-02-20 14:04:34 -03:00

18 lines
361 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
# Optional: Cache control for static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, no-transform";
}
}