source: main/trunk/greenstone3/resources/tomcat/greenstone3.xml.in@ 29722

Last change on this file since 29722 was 29722, checked in by ak19, 9 years ago

Commit 29687, which involved web.xml including the new servlets.xml, caused a tomcat parse error when running the GS3 server. Thanks to George Litvinov for spotting the problem and suggesting the solution (which was accidentally omitted from 29687).

  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
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
6 docBase="@gsdl3webwritablehome@"
7 aliases="/interfaces=@gsdl3webhome@/interfaces,/sites=@gsdl3webhome@/sites"
8 debug="1" reloadable="true"
9 @privilegedattribute@
10 allowLinking="false"
11 xmlBlockExternal="false">
12
13 <Realm className="org.apache.catalina.realm.JDBCRealm"
14 driverName="org.apache.derby.jdbc.EmbeddedDriver"
15 connectionURL="jdbc:derby:@gsdl3webhome@/etc/usersDB"
16 userTable="users" userNameCol="username" userCredCol="password"
17 userRoleTable="roles" roleNameCol="role"
18 />
19 <!-- Session Manager. Default values are used. See
20 packages/tomcat/webapps/docs/config/manager.html for more info.
21 Pathname may be absolute, or relative to greenstone3 context work
22 directory: packages/tomcat/work/Catalina/localhost/greenstone3.
23 Set pathname="" to disable storing session info between restarts.
24 To manually clear session info, stop Tomcat and delete the session
25 file. -->
26 <Manager pathname="SESSIONS.ser" />
27</Context>
Note: See TracBrowser for help on using the repository browser.