From 0df2801d339918f9e78ddd23fd70b408b377b73e Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 29 Apr 2022 14:30:18 -0600 Subject: [PATCH] teuthology: Serve yaml files as text/plain So browers display them rather than download. Signed-off-by: Zack Cerza --- roles/teuthology/templates/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/teuthology/templates/nginx.conf b/roles/teuthology/templates/nginx.conf index a8813ae..62d1542 100644 --- a/roles/teuthology/templates/nginx.conf +++ b/roles/teuthology/templates/nginx.conf @@ -14,5 +14,6 @@ server { } types { text/plain log; + text/plain yaml yml; } } -- 2.39.5