From 45c67c7be6c15a9897e085de8a164ee4b105a641 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:39:36 +0100 Subject: [PATCH] nginx: add some useful mime types Based on https://git.darmstadt.ccc.de/ffda/infra/salt/-/commit/c5a0d4e443e4d265c0143e6ad18176a7bd27c919 --- nginx/files/nginx.conf.jinja | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/files/nginx.conf.jinja b/nginx/files/nginx.conf.jinja index a82cf6b..1d24c6f 100644 --- a/nginx/files/nginx.conf.jinja +++ b/nginx/files/nginx.conf.jinja @@ -36,6 +36,9 @@ http { types { # nginx's default mime.types doesn't include a mapping for wasm application/wasm wasm; + text/plain manifest; + application/manifest+json webmanifest; + application/geo+json geojson; } default_type application/octet-stream;