grncdr / guacamole-url-builder
Installs: 38
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/grncdr/guacamole-url-builder
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2026-01-13 08:02:03 UTC
README
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