added azure pipeline + helmfiles

This commit is contained in:
Nico Hanus
2020-04-17 12:17:30 +02:00
parent 29f527c380
commit 255a9ca893
8 changed files with 190 additions and 0 deletions

20
nginx.conf Normal file
View File

@@ -0,0 +1,20 @@
server {
listen 80;
root /usr/share/nginx/html;
gzip on;
gzip_types text/css application/javascript application/json image/svg+xml;
gzip_comp_level 9;
etag on;
location / {
try_files \$uri \$uri/ /index.html;
}
location /static/ {
add_header Cache-Control max-age=31536000;
}
location /index.html {
add_header Cache-Control no-cache;
}
location /config.json {
add_header Cache-Control no-cache;
}
}