IBM 6.1.X manual BrowserMatch Mozilla/4 gzip-only-text/html, # Dont compress images, Location

Models: 6.1.X

1 97
Download 97 pages 55.38 Kb
Page 62
Image 62
BrowserMatch ^Mozilla/4 gzip-only-text/html

BrowserMatch ^Mozilla/4 gzip-only-text/html

#Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip

#MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

#Don't compress images

SetEnvIfNoCase Request_URI \ \.(?:gifjpe?gpngexe)$ no-gzip dont-vary

E N A B L I N G C L I E N T - S I D E C A C H I N G

The HTTP protocol allows the server to tell clients how long they can cache responses. When the client has the content in their cache, they do not need to request it again, saving the round-trip time to the server to retrieve the content.

This is done by adding Cache-Control: headers to the content which we wish to make cacheable. By default, WebSphere Portal will include these headers in the stylesheets it uses, making that content cacheable at a client for 5 days (432,000 seconds). It is possible to use mod_headers in IBM HTTP Server to add the same headers to images and JavaScript files by adding the following lines to httpd.conf:

LoadModule headers_module modules/mod_headers.so

<Location ~ "\.(jsgifjpgjpegpng)$">

Header add Cache-Control "public, max-age=432000, post- check=172000"

</Location>

5 7

W E BS P HE R E P O R T AL V 6 . 1 T U N I N G G U I D E

Page 62
Image 62
IBM 6.1.X manual BrowserMatch Mozilla/4 gzip-only-text/html, # Dont compress images, Location ~ \.jsgifjpgjpegpng$