Skip to content

Instantly share code, notes, and snippets.

@tbatchelli
Created November 21, 2012 18:00
Show Gist options
  • Save tbatchelli/4126534 to your computer and use it in GitHub Desktop.
Save tbatchelli/4126534 to your computer and use it in GitHub Desktop.
example tomcat settings
(tomcat/server
:port "8005"
:shutdown "SHUTDOWN"
(tomcat/engine "Catalina" "localhost")
(tomcat/service
(tomcat/global-resources)
(tomcat/connector
:scheme "http" :port "80"
:protocol "HTTP/1.1"
:connectionTimeout "20000"
:redirectPort "443")
(tomcat/connector
:scheme "https"
:secure "true"
:SSLEnabled "true"
:keystoreFile keystore-file
:keystorePass "changeit"
:clientAuth "false"
:sslProtocol "TLS"
:port "443" :protocol "HTTP/1.1"
:connectionTimeout "20000")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment