Tiny tidy up

This commit is contained in:
Kai Hendry
2015-10-25 18:55:17 +08:00
parent 64964778fb
commit 254f54e389

View File

@@ -21,7 +21,7 @@ http {
access_log /var/log/nginx/greptweet.access.log; access_log /var/log/nginx/greptweet.access.log;
error_log /var/log/nginx/greptweet.error.log; error_log /var/log/nginx/greptweet.error.log;
error_page 403 =303 /404.php; error_page 403 =303 /404.php;
error_page 404 = /404.php; error_page 404 /404.php;
location / { location / {
index index.php index.html; index index.php index.html;
@@ -29,7 +29,7 @@ http {
} }
location ~ \.(gz)$ { location ~ \.(gz)$ {
add_header Content-Encoding gzip; add_header Content-Encoding gzip;
gzip off; gzip off;
} }