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
Nikolai Rodionov c1667d4603 chart: Version is upgraded
`VirtualService` resource is fixed
2023-02-26 05:50:17 +01:00

20 lines
346 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
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;
}
}