941c8d17fd
guacamole-client is the superproject containing all Maven-based projects that make Guacamole, an HTML5 web application that provides access to your desktop using remote desktop protocols. guacamole-client is used to build the subprojects that make up Guacamole, and to provide a common central repository. Each project contained here is completely independent of guacamole-client and can be built separately, though the others may have to be built first. If all projects are built using guacamole-client, Maven will take care of the proper build order. WWW: https://github.com/glyptodon/guacamole-client PR: 202755 Submitted by: ultima1252@gmail.com
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Guacamole's default authentication module is a simple xml file.
|
|
Each user is specified with a corresponding <authorized> tag. This
|
|
tag contains all authorized connections for that user each denoted
|
|
with a <connections> tag. Each <connection> tag contains a
|
|
protocol and set of protocol-specific parameters, specified with
|
|
the <protocol> and <param> tags respectively. For more information
|
|
visit http://guac-dev.org/doc/gug/configuring-guacamole.html -->
|
|
|
|
|
|
<user-mapping>
|
|
|
|
<!-- Per-user authentication and config information -->
|
|
<authorize username="guacamole" password="guacamole">
|
|
<!-- <connection name="vnc">
|
|
<protocol>vnc</protocol>
|
|
<param name="hostname">localhost</param>
|
|
<param name="port">5901</param>
|
|
</connection>
|
|
<connection name="rdp">
|
|
<protocol>rdp</protocol>
|
|
<param name="hostname">localhost</param>
|
|
<param name="port">3389</param>
|
|
</connection> -->
|
|
<connection name="ssh">
|
|
<protocol>ssh</protocol>
|
|
<param name="hostname">localhost</param>
|
|
<param name="port">22</param>
|
|
<param name="font-name">monospace</param>
|
|
</connection>
|
|
<connection name="delete me">
|
|
<protocol>ssh</protocol>
|
|
<param name="hostname">none</param>
|
|
<param name="port">22</param>
|
|
<param name="font-name">monospace</param>
|
|
</connection>
|
|
</authorize>
|
|
|
|
</user-mapping>
|