mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-30 00:23:21 +00:00 
			
		
		
		
	Added dummy proxy implementation, moved client, added main Makefile.
This commit is contained in:
		
				
					committed by
					
						 Mike Jumper
						Mike Jumper
					
				
			
			
				
	
			
			
			
						parent
						
							7ee970c88a
						
					
				
				
					commit
					c048537232
				
			
							
								
								
									
										102
									
								
								guacamole/client/web/WEB-INF/web.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										102
									
								
								guacamole/client/web/WEB-INF/web.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,102 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|     Guacamole - Pure JavaScript/HTML VNC Client | ||||
|     Copyright (C) 2010  Michael Jumper | ||||
|  | ||||
|     This program is free software: you can redistribute it and/or modify | ||||
|     it under the terms of the GNU Affero General Public License as published by | ||||
|     the Free Software Foundation, either version 3 of the License, or | ||||
|     (at your option) any later version. | ||||
|  | ||||
|     This program is distributed in the hope that it will be useful, | ||||
|     but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|     GNU Affero General Public License for more details. | ||||
|  | ||||
|     You should have received a copy of the GNU Affero General Public License | ||||
|     along with this program.  If not, see <http://www.gnu.org/licenses/>. | ||||
| --> | ||||
| <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"> | ||||
|     <!-- Basic config --> | ||||
|     <welcome-file-list> | ||||
|         <welcome-file>index.html</welcome-file> | ||||
|     </welcome-file-list> | ||||
|     <session-config> | ||||
|         <session-timeout> | ||||
| 			30 | ||||
|         </session-timeout> | ||||
|     </session-config> | ||||
|     <!-- Servlets --> | ||||
|     <servlet> | ||||
|         <servlet-name>Connect</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.control.Connect</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>Connect</servlet-name> | ||||
|         <url-pattern>/connect</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <servlet> | ||||
|         <servlet-name>Disconnect</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.control.Disconnect</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>Disconnect</servlet-name> | ||||
|         <url-pattern>/disconnect</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <servlet> | ||||
|         <description>Instruction stream servlet.</description> | ||||
|         <servlet-name>InstructionStream</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.output.InstructionStream</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>InstructionStream</servlet-name> | ||||
|         <url-pattern>/instructions</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <servlet> | ||||
|         <description>Clipboard input servlet.</description> | ||||
|         <servlet-name>Clipboard</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.input.Clipboard</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>Clipboard</servlet-name> | ||||
|         <url-pattern>/clipboard</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <servlet> | ||||
|         <description>Key input servlet.</description> | ||||
|         <servlet-name>Key</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.input.Key</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>Key</servlet-name> | ||||
|         <url-pattern>/key</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <servlet> | ||||
|         <description>Pointer input servlet.</description> | ||||
|         <servlet-name>Pointer</servlet-name> | ||||
|         <servlet-class>net.sourceforge.guacamole.net.input.Pointer</servlet-class> | ||||
|     </servlet> | ||||
|     <servlet-mapping> | ||||
|         <servlet-name>Pointer</servlet-name> | ||||
|         <url-pattern>/pointer</url-pattern> | ||||
|     </servlet-mapping> | ||||
|     <security-constraint> | ||||
|         <display-name>Guacamole Access Restrictions</display-name> | ||||
|         <web-resource-collection> | ||||
|             <web-resource-name>Guacamole</web-resource-name> | ||||
|             <description>All servlets/pages within Guacamole.</description> | ||||
|             <url-pattern>/*</url-pattern> | ||||
|         </web-resource-collection> | ||||
|         <auth-constraint> | ||||
|             <description>Only allow Guacamole users access.</description> | ||||
|             <role-name>guacamole</role-name> | ||||
|         </auth-constraint> | ||||
|     </security-constraint> | ||||
|     <login-config> | ||||
|         <auth-method>BASIC</auth-method> | ||||
|         <realm-name>Guacamole</realm-name> | ||||
|     </login-config> | ||||
|     <security-role> | ||||
|         <description>Guacamole</description> | ||||
|         <role-name>guacamole</role-name> | ||||
|     </security-role> | ||||
| </web-app> | ||||
		Reference in New Issue
	
	Block a user