feat: 增加生产环境容器编排

This commit is contained in:
2026-07-10 11:50:45 +08:00
parent 9fb3dad5bd
commit fb39c9c543
8 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:js|css|png|jpg|jpeg|gif|svg|ico|woff2?)$ {
expires 7d;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
}