Grosse MàJ
@ -0,0 +1 @@
|
||||
<Context antiResourceLocking="false" privileged="true" />
|
@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
|
||||
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
version="2.5">
|
||||
|
||||
<display-name>Tomcat Manager Application</display-name>
|
||||
<description>
|
||||
A scriptable management web application for the Tomcat Web Server;
|
||||
Manager lets you view, load/unload/etc particular web applications.
|
||||
</description>
|
||||
|
||||
<!-- Define the Manager Servlet
|
||||
Change servlet-class to: org.apache.catalina.servlets.HTMLManagerServlet
|
||||
to get a Servlet with a more intuitive HTML interface, don't change if you
|
||||
have software that is expected to parse the output from ManagerServlet
|
||||
since they're not compatible.
|
||||
-->
|
||||
<servlet>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<servlet-class>org.apache.catalina.manager.host.HostManagerServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>2</param-value>
|
||||
</init-param>
|
||||
</servlet>
|
||||
<servlet>
|
||||
<servlet-name>HTMLHostManager</servlet-name>
|
||||
<servlet-class>org.apache.catalina.manager.host.HTMLHostManagerServlet</servlet-class>
|
||||
<init-param>
|
||||
<param-name>debug</param-name>
|
||||
<param-value>2</param-value>
|
||||
</init-param>
|
||||
</servlet>
|
||||
|
||||
<!-- Define the Manager Servlet Mapping -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<url-pattern>/list</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<url-pattern>/add</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<url-pattern>/remove</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<url-pattern>/start</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>HostManager</servlet-name>
|
||||
<url-pattern>/stop</url-pattern>
|
||||
</servlet-mapping>
|
||||
<servlet-mapping>
|
||||
<servlet-name>HTMLHostManager</servlet-name>
|
||||
<url-pattern>/html/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- Define a Security Constraint on this Application -->
|
||||
<security-constraint>
|
||||
<web-resource-collection>
|
||||
<web-resource-name>HTMLHostManager and HostManager commands</web-resource-name>
|
||||
<url-pattern>/html/*</url-pattern>
|
||||
<url-pattern>/list</url-pattern>
|
||||
<url-pattern>/add</url-pattern>
|
||||
<url-pattern>/remove</url-pattern>
|
||||
<url-pattern>/start</url-pattern>
|
||||
<url-pattern>/stop</url-pattern>
|
||||
</web-resource-collection>
|
||||
<auth-constraint>
|
||||
<!-- NOTE: This role is not present in the default users file -->
|
||||
<role-name>admin</role-name>
|
||||
</auth-constraint>
|
||||
</security-constraint>
|
||||
|
||||
<!-- Define the Login Configuration for this Application -->
|
||||
<login-config>
|
||||
<auth-method>BASIC</auth-method>
|
||||
<realm-name>Tomcat Host Manager Application</realm-name>
|
||||
</login-config>
|
||||
|
||||
<!-- Security roles referenced by this web application -->
|
||||
<security-role>
|
||||
<description>
|
||||
The role that is required to log in to the Manager Application
|
||||
</description>
|
||||
<role-name>admin</role-name>
|
||||
</security-role>
|
||||
|
||||
</web-app>
|
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/add.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 7.1 KiB |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/code.gif
Normal file
After Width: | Height: | Size: 394 B |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/design.gif
Normal file
After Width: | Height: | Size: 608 B |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/docs.gif
Normal file
After Width: | Height: | Size: 261 B |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/fix.gif
Normal file
After Width: | Height: | Size: 345 B |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/tomcat.gif
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/update.gif
Normal file
After Width: | Height: | Size: 627 B |
BIN
P51/apache-tomcat-6.0.14/webapps/host-manager/images/void.gif
Normal file
After Width: | Height: | Size: 43 B |
13
P51/apache-tomcat-6.0.14/webapps/host-manager/manager.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<!--
|
||||
|
||||
Context configuration file for the Tomcat Manager Web App
|
||||
|
||||
$Id: manager.xml 529398 2007-04-16 21:00:52Z remm $
|
||||
|
||||
-->
|
||||
|
||||
|
||||
<Context docBase="${catalina.home}/webapps/manager"
|
||||
privileged="true" antiResourceLocking="false" antiJARLocking="false">
|
||||
|
||||
</Context>
|