guacamole-url-builder
, (*1)
Create signed URLs for use with guacamole-auth-hmac in PHP., (*2)
Synopsis
$urlBuilder = new Guacamole\UrlBuilder(
"my secret key",
"http://myguacamoleserver.internal/client.xhtml"
);
$url = $urlBuilder->url("myserver", "vnc", "myvncserver.internal");
In most cases, you will want to include a username and password in your connection
information:, (*3)
$url = $urlBuilder->url("myserver", "vnc", "myvncserver.internal", array(
"guac.username" => "stephen",
"guac.password" => "password"
));
Warning: The username and password will be included in the URL in plain-text.
You should either use SSL in front of your Guacamole server or firewall it off
from the outside world., (*4)
Install
composer require grncdr/guacamole-url-builder 0.8.x
License
MIT, (*5)