From d38433a9c2ff39eac954879fa618d43700109de0 Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 6 Jul 2014 03:22:40 +0200 Subject: [PATCH] fix gzip static --- inc/config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inc/config.php b/inc/config.php index 416209b7..56f8ba4f 100644 --- a/inc/config.php +++ b/inc/config.php @@ -1555,6 +1555,10 @@ // 'type' => 'scp' // ); + // Create gzipped static files along with ungzipped. + // This is useful with nginx with gzip_static on. + $config['gzip_static'] = false; + // Regex for board URIs. Don't add "`" character or any Unicode that MySQL can't handle. 58 characters // is the absolute maximum, because MySQL cannot handle table names greater than 64 characters. $config['board_regex'] = '[0-9a-zA-Z$_\x{0080}-\x{FFFF}]{1,58}';