Files
by-other-means/helm/templates/nginx_configmap.yml
T
2026-07-29 00:30:37 -04:00

29 lines
515 B
YAML

---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-configmap
labels:
app: {{ .Values.system }}
tenant: {{ .Values.system }}
data:
default.conf: |
server {
listen 80;
listen [::]:80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html =404;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}