From 06e5fc8445cd52f6962e45a6096b4ea7d6e60a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Sat, 9 Mar 2019 02:41:29 +0100 Subject: [PATCH] Remove extra match-any regexp --- h5bp/web_performance/cache_expiration.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/h5bp/web_performance/cache_expiration.conf b/h5bp/web_performance/cache_expiration.conf index 7923d2e..85f191c 100644 --- a/h5bp/web_performance/cache_expiration.conf +++ b/h5bp/web_performance/cache_expiration.conf @@ -52,15 +52,15 @@ map $sent_http_content_type $expires { ~*text/markdown 0; # Media files - ~*audio/.* 1M; - ~*image/.* 1M; - ~*video/.* 1M; + ~*audio/ 1M; + ~*image/ 1M; + ~*video/ 1M; # WebAssembly ~*application/wasm 1y; # Web fonts - ~*font/.* 1M; + ~*font/ 1M; ~*application/vnd.ms-fontobject 1M; ~*application/x-font-ttf 1M; ~*application/x-font-woff 1M;