bda8f879382475ef407e4b147bf67db0cf037e00
[guacamole.git] / 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         <param name="hostname">localhost</param>
7         <param name="port">5900</param>
8         <param name="password">VNCPASS</param>
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         <param name="hostname">localhost</param>
19         <param name="port">5901</param>
20         <param name="password">VNCPASS</param>
21     </authorize>
22
23 </user-mapping>