File: admin.xml

package info (click to toggle)
tomcat5 5.0.30-12etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 22,860 kB
  • ctags: 26,367
  • sloc: java: 152,968; xml: 42,830; ansic: 33,715; jsp: 7,193; perl: 2,289; sh: 1,081; makefile: 551; awk: 59
file content (22 lines) | stat: -rw-r--r-- 793 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--
    Context configuration file for the Tomcat Administration Web App
-->

<Context path="/admin" docBase="/usr/share/tomcat5/server/webapps/admin"
         debug="0" privileged="true" allowLinking="true">

  <!-- make symlinks work in Tomcat 5 -->
  <Resources className="org.apache.naming.resources.FileDirContext"
             allowLinking="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_" suffix=".log" timestamp="true"/>

</Context>