增加流水线配置

This commit is contained in:
qiaoxinjiu
2026-04-13 19:23:41 +08:00
parent 3c7f075544
commit 5b88971518
4 changed files with 187 additions and 0 deletions

11
nginx.conf Normal file
View File

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