feat: 新增 docker hub

This commit is contained in:
hzm
2026-03-16 09:03:14 +08:00
parent d8a4db34fe
commit 1a59087cd9
4 changed files with 103 additions and 27 deletions

15
nginx.conf Normal file
View File

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