forked from jchomaz/Vulture
24 lines
894 B
Nginx Configuration File
24 lines
894 B
Nginx Configuration File
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
root /usr/share/nginx/html; # Chemin où les fichiers statiques sont copiés
|
||
|
|
|
||
|
|
index index.html index.htm; # Fichier par défaut à servir
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ /index.html; # Pour les applications SPA (Single Page Applications)
|
||
|
|
# cela redirige toutes les requêtes non trouvées vers index.html
|
||
|
|
}
|
||
|
|
|
||
|
|
# Cache Control pour les fichiers statiques (optionnel mais bonne pratique)
|
||
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
||
|
|
expires 30d;
|
||
|
|
add_header Cache-Control "public, no-transform";
|
||
|
|
}
|
||
|
|
|
||
|
|
# Gzip compression (optionnel, améliore la performance)
|
||
|
|
gzip on;
|
||
|
|
gzip_vary on;
|
||
|
|
gzip_proxied any;
|
||
|
|
gzip_comp_level 6;
|
||
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||
|
|
}
|