From d2b19aa6d5f59f02888ba585b73df4781afae80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 11 May 2020 08:48:53 +0200 Subject: [PATCH] Use correct encoding header for gzip. Fixes issue #53. --- public/.htaccess | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/.htaccess b/public/.htaccess index 6a1e5612..d3e13707 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -38,19 +38,19 @@ DirectoryIndex index.php # Specify gzip-encoded assets AddType "text/javascript" .gz - AddEncoding gz .gz + AddEncoding gzip .gz AddType "text/css" .gz - AddEncoding gz .gz + AddEncoding gzip .gz AddType "image/svg+xml" .gz - AddEncoding gz .gz + AddEncoding gzip .gz AddType "text/html" .gz - AddEncoding gz .gz + AddEncoding gzip .gz