fix: gộp các nút của thành viên và guest vào một

This commit is contained in:
2026-06-27 15:37:00 +07:00
parent 5f49070a98
commit 400a3d098d
33 changed files with 1142 additions and 250 deletions
+9
View File
@@ -12,6 +12,15 @@ server {
add_header Cache-Control "public, max-age=31536000";
}
# Proxy downloaded APK files from backend
location /downloads/ {
proxy_pass http://backend:3001;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
# JavaScript and CSS files - immutable caching
location ~* \.(?:js|css)$ {
root /usr/share/nginx/html;