From 1d4fb7ad07d949d878bfb21fd794493dd4b31f77 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Mon, 8 Feb 2016 16:26:32 -0500 Subject: [PATCH] config: gzip_types undef by default No change to server behaviour. Fixes #748 --- manifests/config.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/config.pp b/manifests/config.pp index c563736..ff9392c 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -60,7 +60,7 @@ class nginx::config( $gzip_min_length = 20, $gzip_http_version = 1.1, $gzip_proxied = 'off', - $gzip_types = 'text/html', + $gzip_types = undef, $gzip_vary = 'off', $http_cfg_append = false, $http_tcp_nodelay = 'on',