IBM WEBSPHERE 6.1.X Manual de usuario Pagina 37

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 97
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 36
32
WE BSPHERE PORTAL V6.1 TUNING GUIDE
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] no-gzip
BrowserMatch \bMSIE\s7 !no-gzip !gzip-only-text/html
# added this for caching of dojo javascript and the theme’s xsl files, max-age = 1 day
<Location /wps/themes/dojo>
Header set Cache-Control public;max-age=86400
</Location>
<Location /wps/themes/html/PortalWeb2/xsl>
Header set Cache-Control public;max-age=86400
</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 "\.(gif|jpeg|jpg|png|ico|css|js|swf)$">
Header set cache-control "public"
</FilesMatch>
Vista de pagina 36
1 2 ... 32 33 34 35 36 37 38 39 40 41 42 ... 96 97

Comentarios a estos manuales

ChrisCaddy 27 Apr 2024 | 05:14:13

Hello, im noob :)