qy-html-project/k8s/nginx-conf.yaml
zyc 1ab9e67f21
Some checks failed
Deploy Static Sites / deploy (push) Failing after 1s
init: 静态站点部署配置 + cyberstar 项目
- Gitea CI 自动 rsync 到服务器
- K8S Nginx 按子域名路由到对应项目目录
- cyberstar 首个项目
2026-04-08 17:56:59 +08:00

22 lines
396 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: static-sites-nginx-conf
data:
default.conf: |
server {
listen 80;
server_name ~^(?<project>.+)\.airlabs\.art$;
root /usr/share/nginx/html/$project;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~ /\. {
deny all;
}
}