config pour génération d'image docker à la création de release

This commit is contained in:
2026-05-23 21:45:56 +02:00
parent 70ad0043a2
commit 9af9ddd8cb
4 changed files with 67 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
}