From 4109efd734c0c5267f1e5d33f8ff04aa8a67070c Mon Sep 17 00:00:00 2001 From: glamic-ep Date: Wed, 2 Mar 2022 21:06:28 +0100 Subject: [PATCH] fix(docker-nginx): Output yml/yaml as text/plain (#7749) Co-authored-by: Tim Lai --- docker/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index b5ef0c16..e80d72e4 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -7,6 +7,10 @@ events { http { include mime.types; default_type application/octet-stream; + types { + text/plain yaml; + text/plain yml; +} sendfile on;