Files
Talks/server/nginx/default.conf
Le Prévost-Corvellec Arnault 4ffed1b5fa
Some checks failed
Talks slides — image & chart / vars (push) Successful in 2s
Talks slides — image & chart / Build container image (push) Failing after 41s
Talks slides — image & chart / Helm chart (push) Failing after 43s
ci
2026-04-08 20:13:50 +02:00

13 lines
303 B
Plaintext

server {
listen 80;
server_name localhost;
# Racine web = contenu statique sparse (dossier content/ du dépôt).
root /usr/share/nginx/html/content;
index index.html index.htm;
location / {
add_header Cache-Control "no-cache";
try_files $uri $uri/ =404;
}
}