添加dockerfile

This commit is contained in:
2026-07-23 15:57:53 +08:00
parent b4c0a1c516
commit 0900edab65
3 changed files with 78 additions and 0 deletions

11
docker/admin.nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}