Files
Geradores/geradoresfe/nginx.conf
2026-01-21 22:05:21 +00:00

15 lines
266 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
# Optional: gzip
gzip on;
gzip_types text/plain application/javascript text/css application/json image/svg+xml;
}