WebToApp 源码解析: apkbuilder 字节级分析 + docs 站

This commit is contained in:
kang
2026-04-13 16:45:55 +08:00
commit a51810982a
5 changed files with 776 additions and 0 deletions

19
nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/javascript application/json text/html;
gzip_min_length 1000;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 7d;
add_header Cache-Control "public, no-transform";
}
}