feat: add Dockerfile

This commit is contained in:
fb.wang
2025-09-23 16:26:41 +08:00
parent d931e31ec1
commit 50c598f574
8 changed files with 1257 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
}
}