source: main/trunk/greenstone3/resources/tomcat/greenstone3.xml@ 25130

Last change on this file since 25130 was 25130, checked in by sjm84, 12 years ago

First round of commits to upgrade from tomcat 6 to tomcat 7

  • Property svn:keywords set to Author Date Id Revision
File size: 859 bytes
Line 
1<!-- set allowLinking to true if you want to use symlinks to files or directories outside the docBase directory -->
2<!-- set reloadable to false for a production version. if true, automatically reloads the webapp if it detects changes in classes or lib directories -->
3<!-- see http://tomcat.apache.org/tomcat-5.5-doc/config/context.html for more Context attributes -->
4
5<Context path="/greenstone3"
6 docBase="C:\Users\sjm84\Desktop\greenstone3/web"
7 debug="1" reloadable="true"
8 privileged='true'
9 allowLinking="false">
10
11 <Realm className="org.apache.catalina.realm.JDBCRealm"
12 driverName="org.apache.derby.jdbc.EmbeddedDriver"
13 connectionURL="jdbc:derby:C:/Users/sjm84/Desktop/greenstone3/web/sites/localsite/etc/usersDB"
14 userTable="users" userNameCol="username" userCredCol="password"
15 userRoleTable="roles" roleNameCol="role"
16 />
17</Context>
Note: See TracBrowser for help on using the repository browser.