annotate config/tomcat/conf/server.xml @ 107:85126da2ae21 vendor start

XUL: Digilib Buttons in chrome
author engler
date Tue, 13 May 2003 21:02:22 +0200
parents c4a571313422
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26
c4a571313422 First import of config module
robcast
parents:
diff changeset
1 <!-- Digilib Server Configuration File -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
2
c4a571313422 First import of config module
robcast
parents:
diff changeset
3 <Server port="8005" shutdown="SHUTDOWN" debug="0">
c4a571313422 First import of config module
robcast
parents:
diff changeset
4
c4a571313422 First import of config module
robcast
parents:
diff changeset
5 <!-- Define an Apache-Connector Service -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
6 <Service name="Tomcat-Docuserver">
c4a571313422 First import of config module
robcast
parents:
diff changeset
7
c4a571313422 First import of config module
robcast
parents:
diff changeset
8 <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
9 <Connector className="org.apache.catalina.connector.http.HttpConnector"
c4a571313422 First import of config module
robcast
parents:
diff changeset
10 port="8080" minProcessors="5" maxProcessors="75"
c4a571313422 First import of config module
robcast
parents:
diff changeset
11 acceptCount="10" debug="0" connectionTimeout="60000"/>
c4a571313422 First import of config module
robcast
parents:
diff changeset
12
c4a571313422 First import of config module
robcast
parents:
diff changeset
13 <!-- Replace "localhost" with what your Apache "ServerName" is set to -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
14 <Engine className="org.apache.catalina.connector.warp.WarpEngine"
c4a571313422 First import of config module
robcast
parents:
diff changeset
15 name="Apache" debug="1" appBase="webapps" defaultHost="hera.unibe.ch">
c4a571313422 First import of config module
robcast
parents:
diff changeset
16
c4a571313422 First import of config module
robcast
parents:
diff changeset
17 <!-- Global logger unless overridden at lower levels -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
18 <Logger className="org.apache.catalina.logger.FileLogger"
c4a571313422 First import of config module
robcast
parents:
diff changeset
19 prefix="apache_log." suffix=".txt"
c4a571313422 First import of config module
robcast
parents:
diff changeset
20 timestamp="true"/>
c4a571313422 First import of config module
robcast
parents:
diff changeset
21
c4a571313422 First import of config module
robcast
parents:
diff changeset
22 <!-- Define the default virtual host. Hostname must match the engine's. -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
23 <Host name="hera.unibe.ch" debug="0" appBase="/docuserver/tmp/digilib-test/docuserver">
c4a571313422 First import of config module
robcast
parents:
diff changeset
24
c4a571313422 First import of config module
robcast
parents:
diff changeset
25 <Context path="/docuserver/digitallibrary" docBase="/docuserver/tmp/digilib-test/docuserver/digitallibrary" debug="0" reloadable="false">
c4a571313422 First import of config module
robcast
parents:
diff changeset
26 </Context>
c4a571313422 First import of config module
robcast
parents:
diff changeset
27
c4a571313422 First import of config module
robcast
parents:
diff changeset
28 <!--
c4a571313422 First import of config module
robcast
parents:
diff changeset
29 <Context path="/manager" docBase="/opt/tomcat/webapps/manager" debug="0" reloadable="false">
c4a571313422 First import of config module
robcast
parents:
diff changeset
30 </Context>
c4a571313422 First import of config module
robcast
parents:
diff changeset
31 -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
32
c4a571313422 First import of config module
robcast
parents:
diff changeset
33 </Host>
c4a571313422 First import of config module
robcast
parents:
diff changeset
34
c4a571313422 First import of config module
robcast
parents:
diff changeset
35 <!-- Because this Realm is here, an instance will be shared globally -->
c4a571313422 First import of config module
robcast
parents:
diff changeset
36 <Realm className="org.apache.catalina.realm.MemoryRealm" />
c4a571313422 First import of config module
robcast
parents:
diff changeset
37
c4a571313422 First import of config module
robcast
parents:
diff changeset
38 </Engine>
c4a571313422 First import of config module
robcast
parents:
diff changeset
39
c4a571313422 First import of config module
robcast
parents:
diff changeset
40 </Service>
c4a571313422 First import of config module
robcast
parents:
diff changeset
41
c4a571313422 First import of config module
robcast
parents:
diff changeset
42 </Server>