Anoop's major update. Everything has changed location.
This commit is contained in:
parent
c4c899c895
commit
6251b6c670
438 changed files with 40585 additions and 0 deletions
24
tomcat/conf/Catalina/localhost/admin.xml
Normal file
24
tomcat/conf/Catalina/localhost/admin.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!--
|
||||
|
||||
Context configuration file for the Tomcat Administration Web App
|
||||
|
||||
$Id: admin.xml,v 1.1 2005/02/21 06:54:31 amontano Exp $
|
||||
|
||||
-->
|
||||
|
||||
|
||||
<Context path="/admin" docBase="${catalina.home}/server/webapps/admin"
|
||||
debug="0" privileged="true">
|
||||
|
||||
<!-- Uncomment this Valve to limit access to the Admin app to localhost
|
||||
for obvious security reasons. Allow may be a comma-separated list of
|
||||
hosts (or even regular expressions).
|
||||
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
|
||||
allow="127.0.0.1"/>
|
||||
-->
|
||||
|
||||
<Logger className="org.apache.catalina.logger.FileLogger"
|
||||
prefix="localhost_admin_log." suffix=".txt"
|
||||
timestamp="true"/>
|
||||
|
||||
</Context>
|
28
tomcat/conf/Catalina/localhost/lex.xml
Normal file
28
tomcat/conf/Catalina/localhost/lex.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<Context path="/lex" docBase="C:\Documents and Settings\Andres Montano\My Documents\docs-misc\java\DictionarySearch\src\Dictionary\webroot" workDir="C:\Documents and Settings\Andres Montano\My Documents\docs-misc\java\DictionarySearch\src\Dictionary\work" debug="0" reloadable="true" crossContext="true">
|
||||
|
||||
<Resource name="jdbc/lex-datasource" scope="Shareable" type="javax.sql.DataSource"
|
||||
factory="org.apache.commons.dbcp.BasicDataSourceFactory"
|
||||
url="jdbc:mysql://localhost:3306/Lex?useUnicode=true&characterEncoding=UTF-8"
|
||||
driverClassName="com.mysql.jdbc.Driver"
|
||||
username="javauser"
|
||||
password="javadude"
|
||||
maxWait="5000"
|
||||
maxIdle="7"
|
||||
maxActive="15"
|
||||
removeAbandoned="true"/>
|
||||
|
||||
<Resource name="jdbc/thdl-users-datasource" scope="Shareable" type="javax.sql.DataSource"
|
||||
factory="org.apache.commons.dbcp.BasicDataSourceFactory"
|
||||
url="jdbc:mysql://localhost:3306/ThdlUsers"
|
||||
driverClassName="com.mysql.jdbc.Driver"
|
||||
username="javauser"
|
||||
password="javadude"
|
||||
useUnicode="true"
|
||||
characterEncoding="utf-8"
|
||||
maxWait="5000"
|
||||
maxIdle="7"
|
||||
maxActive="15"
|
||||
removeAbandoned="true"/>
|
||||
|
||||
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs/access" prefix="lex_access_log." suffix=".txt" pattern="combined" resolveHosts="true"/>
|
||||
</Context>
|
17
tomcat/conf/Catalina/localhost/manager.xml
Normal file
17
tomcat/conf/Catalina/localhost/manager.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!--
|
||||
|
||||
Context configuration file for the Tomcat Manager Web App
|
||||
|
||||
$Id: manager.xml,v 1.1 2005/02/21 06:54:31 amontano Exp $
|
||||
|
||||
-->
|
||||
|
||||
|
||||
<Context path="/manager" docBase="${catalina.home}/server/webapps/manager"
|
||||
debug="0" privileged="true">
|
||||
|
||||
<!-- Link to the user database we will get roles from -->
|
||||
<ResourceLink name="users" global="UserDatabase"
|
||||
type="org.apache.catalina.UserDatabase"/>
|
||||
|
||||
</Context>
|
Loading…
Add table
Add a link
Reference in a new issue