From 54540f8fafe1e7225ce0132d4c93d2209a532351 Mon Sep 17 00:00:00 2001 From: Lucas Silva Date: Fri, 13 Mar 2026 23:25:11 -0300 Subject: [PATCH] nginx: add more extensions to the static asset pattern --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index ee8500d..9122c6a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,7 +5,7 @@ server { root /usr/share/nginx/html; index index.html; - location ~* \.(?:css|js|mjs|map|json|wasm|mp3|flac|png|jpg|jpeg|svg|webp|ico|gz|br)$ { + location ~* \.(?:css|js|mjs|map|json|wasm|mp3|flac|wav|ogg|png|jpg|jpeg|svg|webp|ico|gz|br|utf|ttf|woff2?)$ { try_files $uri =404; }