From 254f54e389d365deacbd2f5bb8f3349eb5fea767 Mon Sep 17 00:00:00 2001 From: Kai Hendry Date: Sun, 25 Oct 2015 18:55:17 +0800 Subject: [PATCH] Tiny tidy up --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 285d832..ee59bb7 100644 --- a/nginx.conf +++ b/nginx.conf @@ -21,7 +21,7 @@ http { access_log /var/log/nginx/greptweet.access.log; error_log /var/log/nginx/greptweet.error.log; error_page 403 =303 /404.php; - error_page 404 = /404.php; + error_page 404 /404.php; location / { index index.php index.html; @@ -29,7 +29,7 @@ http { } location ~ \.(gz)$ { - add_header Content-Encoding gzip; + add_header Content-Encoding gzip; gzip off; }