This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
badhouseplants-net-old/chart/templates/nginx-config-cm.yaml

20 lines
366 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config-{{ .Release.Name }}
labels:
{{- include "badhouseplants-net.labels" . | nindent 4 }}
data:
default.conf: |
server {
listen 80;
listen [::]:80;
server_name ~.;
root /var/www;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}