瀏覽器那裏不需要咱們操心,因爲眼下的巨大多數瀏覽器都支持解析gzip過的頁面。
javascript
Nginx的壓縮輸出有一組gzip壓縮指令來實現。相關指令位於http{….}兩個大括號之間。css
今天整理下。做爲筆記來記錄。html
首先我對 Nginx 中 Gzip 的配置例如如下:java
gzip on;nginx 版本號:1.8.0nginx
詳細nginx搭建過程請參考:http://blog.csdn.net/grhlove123/article/details/47834673瀏覽器
可以用下面命令推斷server Nginx 是否開啓 Gzip 壓縮app
curl -I -H "Accept-Encoding: gzip, deflate" "http://10.10.49.23:8080/news/login.jsp"curl
HTTP/1.1 200 OK Server: nginx/1.8.0 Date: Mon, 24 Aug 2015 06:32:45 GMT Content-Type: text/html;charset=UTF-8 Connection: keep-alive Vary: Accept-Encoding Set-Cookie: JSESSIONID=F0C060FA46D81BC87310765B85EFD857; Path=/news/; HttpOnly Content-Encoding: gzip出現在 Conten_Encoding:gzip說明已開啓了壓縮。當然可以用chrom瀏覽器查看
參考:jsp
http://havee.me/internet/2014-04/nginx-gzip-compression.html
post