Skip to content

Instantly share code, notes, and snippets.

@camilopayan
Created August 24, 2011 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camilopayan/1169119 to your computer and use it in GitHub Desktop.
Save camilopayan/1169119 to your computer and use it in GitHub Desktop.
Tomcat connectors for ajp, and the overall connector on 443
<Connector port="443"
maxHttpHeaderSize="8192"
maxThreads="150"
minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false"
disableUploadTimeout="true"
acceptCount="100"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
keystoreFile="keystore/cascadedev.bin"
keystorePass="changeit"
/>
<Connector port="8009"
enableLookups="false"
redirectPort="443"
protocol="AJP/1.3"
maxProcessors="256"
tomcatAuthentication="false"
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment