2017 © Pedro Peláez
 

library guacamole-url-builder

image

grncdr/guacamole-url-builder

  • Wednesday, January 8, 2014
  • by grncdr
  • Repository
  • 1 Watchers
  • 2 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

guacamole-url-builder

Build Status, (*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)

The Versions

08/01 2014

dev-master

9999999-dev

  Sources   Download

The Development Requires

06/01 2014

0.8.4

0.8.4.0

  Sources   Download

The Development Requires