Changes for page Performance

Last modified by Thomas Mortagne on 2023/10/10

<
From version < 91.1 >
edited by Vincent Massol
on 2017/09/06
To version < 92.1 >
edited by Thomas Mortagne
on 2017/12/14
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.VincentMassol
1 +XWiki.ThomasMortagne
Content
... ... @@ -43,8 +43,14 @@
43 43  
44 44  = Gzip compression and caching of static pages =
45 45  
46 -We're working on making these features part of the XWiki core (see [[XWIKI-2022>>https://jira.xwiki.org/browse/XWIKI-2022]]). While waiting for this to be natively implemented, the recommended solution is to set up an Apache Web Server in front of your servlet container and install/configure the following modules:
46 +HTTP compression is a capability that can be built into web servers and web clients to improve transfer speed and bandwidth utilization. HTTP data is compressed before it is sent from the server: compliant browsers will announce what methods are supported to the server before downloading the correct format; browsers that do not support compliant compression method will download uncompressed data.
47 47  
48 +Many application servers and HTTP proxies support it.
49 +
50 +== In Apache HTTPD ==
51 +
52 +The recommended solution is to set up an Apache Web Server in front of your servlet container and install/configure the following modules:
53 +
48 48  * [[mod-deflate>>http://httpd.apache.org/docs/2.0/mod/mod_deflate.html]]
49 49  * [[mod-expires>>http://httpd.apache.org/docs/2.0/mod/mod_expires.html]]
50 50  * [[mod-proxy-ajp>>http://httpd.apache.org/docs/2.2/mod/mod_proxy_ajp.html]] (note that this depends on [[mod-proxy>>http://httpd.apache.org/docs/2.2/mod/mod_proxy.html]] that you also need to install)
... ... @@ -69,7 +69,7 @@
69 69  
70 70  and configure your different modules as described below:
71 71  
72 -== Mod Deflate Configuration ==
78 +=== Mod Deflate Configuration ===
73 73  
74 74  {{code language="none"}}
75 75  vwwwpro-1:~# cat /etc/apache2/conf.d/deflate
... ... @@ -101,7 +101,7 @@
101 101  
102 102  //On debian apache2 the config file for deflate is located under /etc/apache2/mods-enabled/deflate.conf//
103 103  
104 -== Mod Expire Configuration ==
110 +=== Mod Expire Configuration ===
105 105  
106 106  {{code language="none"}}
107 107  vwwwpro-1:~# cat /etc/apache2/conf.d/expires
... ... @@ -116,7 +116,7 @@
116 116  </Location>
117 117  {{/code}}
118 118  
119 -== Mod Proxy AJP Configuration ==
125 +=== Mod Proxy AJP Configuration ===
120 120  
121 121  {{code language="none"}}
122 122  ProxyRequests Off

Get Connected