grncdr/guacamole-url-builder

There is no license information available for the latest version (0.8.4) of this package.

0.8.4 2014-01-06 22:28 UTC

This package is not auto-updated.

Last update: 2025-06-17 05:20:55 UTC


README

Build Status

Create signed URLs for use with guacamole-auth-hmac in PHP.

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:

$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.

Install

composer require grncdr/guacamole-url-builder 0.8.x

License

MIT