Last active
December 21, 2015 09:48
-
-
Save twelverobots/6287163 to your computer and use it in GitHub Desktop.
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
<Engine name="Catalina" defaultHost="localhost" jvmRoute="cfusion"> | |
<!--For clustering, please take a look at documentation at: | |
/docs/cluster-howto.html (simple how to) | |
/docs/config/cluster.html (reference documentation) --> | |
<!-- | |
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> | |
--> | |
<!-- Use the LockOutRealm to prevent attempts to guess user passwords | |
via a brute-force attack --> | |
<Realm className="org.apache.catalina.realm.LockOutRealm"> | |
<!-- This Realm uses the UserDatabase configured in the global JNDI | |
resources under the key "UserDatabase". Any edits | |
that are performed against this UserDatabase are immediately | |
available for use by the Realm. --> | |
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" | |
resourceName="UserDatabase"/> | |
</Realm> | |
<!-- Define the default virtual host | |
Note: XML Schema validation will not work with Xerces 2.2. | |
--> | |
<Host name="localhost" appBase="webapps" | |
unpackWARs="true" autoDeploy="false"> | |
<!-- SingleSignOn valve, share authentication between web applications | |
Documentation at: /docs/config/valve.html --> | |
<!-- | |
<Valve className="org.apache.catalina.authenticator.SingleSignOn" /> | |
--> | |
<!-- Access log processes all example. | |
Documentation at: /docs/config/valve.html | |
Note: The pattern used is equivalent to using pattern="common" --> | |
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" | |
prefix="localhost_access_log." suffix=".txt" | |
pattern="%h %l %u %t "%r" %s %b" resolveHosts="false"/> | |
<!-- Uncomment the line below to change the default web root or to add virtual directory | |
Make sure to replace <cf_home> with the absolute path to ColdFusion Home--> | |
<!-- To add virtual directory use aliases attribute .The list of aliases should be of the form | |
"/aliasPath1=docBase1,/aliasPath2=docBase2" where aliasPathN must include a leading '/' and | |
docBaseN must be an absolute path to a directory. --> | |
<!-- <Context path="/" docBase="<cf_home>\wwwroot" WorkDir="<cf_home>\runtime\conf\Catalina\localhost\tmp" ></Context> --> | |
</Host> | |
</Engine> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment