Some checks failed
Deploy Static Sites / deploy (push) Failing after 1s
- Gitea CI 自动 rsync 到服务器 - K8S Nginx 按子域名路由到对应项目目录 - cyberstar 首个项目
22 lines
396 B
YAML
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;
|
|
}
|
|
}
|