3c2421e2e6cdc8c7a9dde9c2f5627aca7eba1ec8
[guacamole.git] / web / doc / example / user-mapping.xml
1 <user-mapping>
2         
3         <!-- Per-user authentication and config information -->
4         <authorize username="USERNAME" password="PASSWORD">
5                 <protocol>vnc</protocol>
6                 <hostname>localhost</hostname>
7                 <port>5900</port>
8                 <password>VNCPASS</password>
9         </authorize>
10
11     <!-- Another user, but using md5 to hash the password
12          (example below uses the md5 hash of "PASSWORD") -->
13     <authorize 
14             username="USERNAME2"
15             password="319f4d26e3c536b5dd871bb2c52e3178"
16             encoding="md5">
17                 <protocol>vnc</protocol>
18                 <hostname>localhost</hostname>
19                 <port>5901</port>
20                 <password>VNCPASS</password>
21         </authorize>
22
23 </user-mapping>