22 lines
488 B
YAML
22 lines
488 B
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}-config
|
|
labels:
|
|
{{- include "common.labels" . | nindent 4 }}
|
|
data:
|
|
nginx-config: |-
|
|
server {
|
|
listen 8080;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:80;
|
|
}
|
|
|
|
location ~* ^/(api|dav|\.well-known)/ {
|
|
proxy_pass http://localhost:3456;
|
|
client_max_body_size {{ .Values.env.VIKUNJA_FILES_MAXSIZE | upper | trimSuffix "B" }};
|
|
}
|
|
}
|