fix(docker-nginx): Output yml/yaml as text/plain (#7749)

Co-authored-by: Tim Lai <timothy.lai@gmail.com>
This commit is contained in:
glamic-ep
2022-03-02 21:06:28 +01:00
committed by GitHub
parent 09a403f382
commit 4109efd734

View File

@@ -7,6 +7,10 @@ events {
http {
include mime.types;
default_type application/octet-stream;
types {
text/plain yaml;
text/plain yml;
}
sendfile on;