Last active
March 19, 2016 00:12
-
-
Save JohnTheodore/36a2e133c907907e24fa to your computer and use it in GitHub Desktop.
gluu_tomcat_xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<Server port="8005" shutdown="SHUTDOWN"> | |
<Listener className="org.apache.catalina.core.AprLifecycleListener" /> | |
<Listener className="org.apache.catalina.core.JasperListener" /> | |
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /> | |
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> | |
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" /> | |
<GlobalNamingResources> | |
<Resource name="UserDatabase" auth="Container" | |
type="org.apache.catalina.UserDatabase" | |
description="User database that can be updated and saved" | |
factory="org.apache.catalina.users.MemoryUserDatabaseFactory" | |
pathname="conf/tomcat-users.xml" /> | |
</GlobalNamingResources> | |
<Service name="Catalina"> | |
<Connector port="8443" address="localhost" | |
protocol="org.apache.coyote.http11.Http11Protocol" scheme="https" secure="true" | |
clientAuth="false" sslProtocol="TLS" SSLEnabled="true" | |
keystoreFile="/etc/certs/shibIDP.jks" | |
keystoreType="JKS" keystorePass="foobar" | |
truststoreFile="/etc/certs/shibIDP.jks" | |
truststorePass="bazqux" truststoreType="JKS" | |
truststoreAlgorithm="DelegateToApplication" | |
sslImplementationName="edu.internet2.middleware.security.tomcat7.DelegateToApplicationJSSEImplementation"/> | |
<Connector port="8009" address="localhost" protocol="AJP/1.3" | |
redirectPort="8443" tomcatAuthentication="false" /> | |
<Engine name="Catalina" defaultHost="localhost"> | |
<Realm className="org.apache.catalina.realm.LockOutRealm"> | |
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" | |
resourceName="UserDatabase"/> | |
</Realm> | |
<Host name="localhost" appBase="webapps" | |
unpackWARs="true" autoDeploy="false" | |
xmlValidation="false" xmlNamespaceAware="false"> | |
</Host> | |
</Engine> | |
</Service> | |
</Server> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment