Add CI/CD pipeline and Docker setup for Flutter web application

This commit is contained in:
mammad-xero
2025-08-31 16:53:52 +03:30
parent b706209d41
commit f542a99979
3 changed files with 111 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
server {
listen 80;
server_name localhost;
root /usr/tm/nginx/html;
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
location /assets {
expires 1y;
access_log off;
add_header Cache-Control "public";
}
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
}