This page was last edited on February 2, 2018, at 05:25.
Comments or questions about this documentation? Contact us for support!
There are some useful Apache tuning tips available at http://www.devside.net/articles/apache-performance-tuning.
Depending on the complexity of your Contact Center Advisor (CCAdv) hierarchy, enabling Apache compression of XML files might be necessary to improve performance. Genesys Professional Services can advise you on the need for such compression in your enterprise. If required, use the following procedure.
Procedure: Apache compression for XML files
Purpose: To enable compression of XML files to reduce payload size and download times for the CCAdv dashboard updates.
In the httpd.conf file of each Apache server installation (the httpd.conf file is located in the conf folder of the Apache Web Server installation), do the following:
Add the following section after the /ca-xml/ ProxyPass statement to enable Apache compression of the XML files:
<Location "/ca-xml/">
SetOutputFilter DEFLATE
</Location>
For example:
ProxyPass /ca-xml/ ajp://host:8009/ca-xml/
<Location "/ca-xml/">
SetOutputFilter DEFLATE
</Location>