TOMCAT7 the configuration method to open gzip compression function in the _tomcat

Source: Internet
Author: User
Tags tomcat server

Use gzip compression to reduce data transfer size and speed up Web page loading. Many large stations have been opened gzip compression, but there are many sites do not turn on gzip compression, the last read an article said to open gzip compression search engine unfriendly, but from the bandwidth and flow point of view, it is still necessary to turn on gzip compression.
For TOMCAT7 server, open the Server.xml file under the Conf folder and find

Copy Code code as follows:

<connector port= "8080" protocol= "http/1.1"
connectiontimeout= "20000"
redirectport= "8443"/>

Modified to:
Copy Code code as follows:

<connector port= "8080" protocol= "http/1.1"
connectiontimeout= "20000"
Redirectport= "8443"
Compression= "On"
Compressionminsize= "2048"
Nocompressionuseragents= "Gozilla,traviata"
Compressablemimetype= "text/html,text/xml,text/javascript,application/x-javascript,application/javascript,text/ Css,text/plain "/>

Save the exit and restart the Tomcat server. PS: You can use the following Web site to determine whether gzip open:

http://www.gidnetwork.com/tools/gzip-test.php

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.