Files
WddSuperAgent/agent-common/real_project/sc-my-uav-260202/old/k8s-frontend.yaml
2026-03-16 11:20:29 +08:00

26 lines
477 B
YAML

---
kind: ConfigMap
apiVersion: v1
metadata:
name: nginx-cm
namespace: sc-my-uav-260202
labels:
cmii.type: frontend
data:
nginx.conf: |
server {
listen 9528;
server_name localhost;
gzip on;
location / {
root /home/cmii-platform/dist;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}