From: Zack Cerza Date: Fri, 29 Apr 2022 20:30:18 +0000 (-0600) Subject: teuthology: Serve yaml files as text/plain X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F677%2Fhead;p=ceph-cm-ansible.git teuthology: Serve yaml files as text/plain So browers display them rather than download. Signed-off-by: Zack Cerza --- diff --git a/roles/teuthology/templates/nginx.conf b/roles/teuthology/templates/nginx.conf index a8813aef..62d1542a 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; } }