Child pages
  • Tuning the Server

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When compression is handled by outside the Servoy Application Server, it is advised to turn of compression inside Servoy. This can be doen by modifying the "server.xml" file located in {servoy_install}application_server\server\conf\. and locate the Connector: 

Code Block
 
<Connector port="8080"&nbsp;
protocol="HTTP/1.1"&nbsp;
maxThreads="500" connectionTimeout="60000"&nbsp;
redirectPort="8443" useBodyEncodingForURI="true"&nbsp;
compressableMimeType="text/html,text/xml,text/css,text/javascript,text/plain" compression="on"&nbsp;
compressionMinSize="2048"/>

and removing the following atttributes: 
* compressableMimeType
* compression
* compressionMinSize

Save the edits and restart the Servoy Application Server to let the configuration changes take effect.

Servoy Application Server log

...