Removed all files now part of other repos, moved default webapp source up
[guacamole.git] / src / main / webapp / WEB-INF / web.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3     Guacamole - Clientless Remote Desktop
4     Copyright (C) 2010  Michael Jumper
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU Affero General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU Affero General Public License for more details.
15
16     You should have received a copy of the GNU Affero General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 -->
19 <web-app version="2.5" 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">
20     <!-- Basic config -->
21     <welcome-file-list>
22         <welcome-file>index.html</welcome-file>
23     </welcome-file-list>
24     <session-config>
25         <session-timeout>
26                         30
27         </session-timeout>
28     </session-config>
29     <!-- Guacamole Tunnel Servlets -->
30     <servlet>
31         <description>Connect servlet.</description>
32         <servlet-name>Connect</servlet-name>
33         <servlet-class>net.sourceforge.guacamole.net.tunnel.Connect</servlet-class>
34     </servlet>
35     <servlet-mapping>
36         <servlet-name>Connect</servlet-name>
37         <url-pattern>/connect</url-pattern>
38     </servlet-mapping>
39     <servlet>
40         <description>Outbound servlet.</description>
41         <servlet-name>Outbound</servlet-name>
42         <servlet-class>net.sourceforge.guacamole.net.tunnel.Outbound</servlet-class>
43     </servlet>
44     <servlet-mapping>
45         <servlet-name>Outbound</servlet-name>
46         <url-pattern>/outbound</url-pattern>
47     </servlet-mapping>
48     <servlet>
49         <description>Input servlet.</description>
50         <servlet-name>Inbound</servlet-name>
51         <servlet-class>net.sourceforge.guacamole.net.tunnel.Inbound</servlet-class>
52     </servlet>
53     <servlet-mapping>
54         <servlet-name>Inbound</servlet-name>
55         <url-pattern>/inbound</url-pattern>
56     </servlet-mapping>
57     <!-- Basic Login Servlets -->
58     <servlet>
59         <servlet-name>BasicLogin</servlet-name>
60         <servlet-class>net.sourceforge.guacamole.net.authentication.basic.BasicLogin</servlet-class>
61     </servlet>
62     <servlet-mapping>
63         <servlet-name>BasicLogin</servlet-name>
64         <url-pattern>/login</url-pattern>
65     </servlet-mapping>
66 </web-app>