GitXplorerGitXplorer
g

php-guacamole-url-builder

public
4 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
5fde2c43e12fb116a2e30acef96eaf304c9fa767

Add info on including auth credentials in URL

ggrncdr committed 11 years ago
Unverified
5c8ce7a74537bfeffd22652e79a0ffad7753673c

composer is not npm

ggrncdr committed 11 years ago
Unverified
d6f3f162b5dd2d0bc0ccfceadaa66fc9c989770f

indentation

ggrncdr committed 11 years ago
Unverified
a5be0f6f14f26605c738f4cf4ce8cdc59515e2ac

Add name and version

ggrncdr committed 11 years ago
Unverified
bed514603c5300cd72d27f321f29855cc4611542

add Travis badge to README

ggrncdr committed 11 years ago
Unverified
8205d1520a2dc02d0a3c240c317a448cfb3ecbfe

load vendor/autoload for unit tests

ggrncdr committed 11 years ago

README

The README file for this repository.

guacamole-url-builder

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