Web Server Tuning
Http server tuning for cacheability:
#uncommented these to enable statics to be cached
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
#from http://www.contentwithstyle.co.uk/blog/147 avoid gzip bug in IE 6
BrowserMatch ^Mozilla/4\.[0678]
BrowserMatch \bMSIE\s7
#added this for caching of dojo javascript and the theme’s xsl files,
<Location /wps/themes/dojo>
Header set
</Location>
<Location /wps/themes/html/PortalWeb2/xsl>
Header set
</Location>
#info for these directives at http://httpd.apache.org/docs/2.0/mod/mod_expires.html
#http://httpd.apache.org/docs/2.0/mod/mod_headers.html
#set cache-control public for various static content
<FilesMatch "\.(gifjpegjpgpngicocssjsswf)$">
Header set
</FilesMatch>
3 2
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