(feat) VContainers : build VApp
This commit is contained in:
24
VContainers/VApp/nginx.conf
Normal file
24
VContainers/VApp/nginx.conf
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user