oecis-charts/charts/tandoor/templates/configmap.yaml
2023-08-27 15:38:50 +02:00

28 lines
530 B
YAML

kind: ConfigMap
apiVersion: v1
metadata:
labels:
{{- include "tandoor.labels" . | nindent 4 }}
name: tandoor-nginx-config
data:
nginx-config: |-
events {
worker_connections 1024;
}
http {
include mime.types;
server {
listen 80;
server_name _;
client_max_body_size 16M;
# serve static files
location /static/ {
alias /static/;
}
# serve media files
location /media/ {
alias /media/;
}
}
}