From 01463a370e4ec5c2282b9e16154a8e7521ce587f Mon Sep 17 00:00:00 2001 From: dashrath chauhan Date: Tue, 10 Sep 2024 13:44:51 +0100 Subject: [PATCH] Added mime types --- nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nginx.conf b/nginx.conf index 99a49f2..14cbc9f 100644 --- a/nginx.conf +++ b/nginx.conf @@ -4,6 +4,20 @@ events { } http { + types { + text/html html htm; + text/plain txt; + text/css css; + application/javascript js; + application/json json; + application/xml xml; + image/png png; + image/jpeg jpeg jpg; + image/gif gif; + image/svg+xml svg; + application/octet-stream bin; + } + server { listen 80; server_name dev-testbed.ga4gh.org;