12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- --- conf/server.xml Fri Dec 21 15:20:07 2001
- +++ conf/server.xml Fri Dec 21 15:22:08 2001
- @@ -68,14 +68,15 @@
- -->
- <Logger name="tc_log"
- verbosityLevel = "INFORMATION"
- + path="@l_prefix@/var/tomcat/log/tomcat.log"
- />
-
- <Logger name="servlet_log"
- - path="logs/servlet.log"
- + path="@l_prefix@/var/tomcat/log/servlet.log"
- />
-
- <Logger name="JASPER_LOG"
- - path="logs/jasper.log"
- + path="@l_prefix@/var/tomcat/log/jasper.log"
- verbosityLevel = "INFORMATION" />
-
- <!-- You can add a "home" attribute to represent the "base" for
- @@ -281,12 +282,14 @@
- in the webapps dir and read/write in the workdir.
- -->
-
- + <!-- FIXME -->
- <Context path="/examples"
- docBase="webapps/examples"
- crossContext="false"
- debug="0"
- reloadable="true" >
- </Context>
- + <!-- FIXME -->
-
- <!-- Admin context will use tomcat.core to add/remove/get info about
- the webapplications and tomcat internals.
- @@ -295,7 +298,6 @@
- servlets are visible.
-
- If you change this to true, make sure you set a password.
- - -->
- <Context path="/admin"
- docBase="webapps/admin"
- crossContext="true"
- @@ -303,6 +305,7 @@
- reloadable="true"
- trusted="false" >
- </Context>
- + -->
-
- <!-- Virtual host example -
- In "127.0.0.1" virtual host we'll reverse "/" and
|