GUACAMOLE-623: Default to unencrypted Kubernetes connections.

This commit is contained in:
Michael Jumper 2018-09-09 22:54:50 -07:00
parent 5bae422b29
commit 519c90a887
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ enum KUBERNETES_ARGS_IDX {
IDX_PORT,
/**
* Whether SSL/TLS should be used. SSL is used by default.
* Whether SSL/TLS should be used. If omitted, SSL/TLS will not be used.
*/
IDX_USE_SSL,
@ -223,7 +223,7 @@ guac_kubernetes_settings* guac_kubernetes_parse_args(guac_user* user,
/* Parse whether SSL should be used */
settings->use_ssl =
guac_user_parse_args_boolean(user, GUAC_KUBERNETES_CLIENT_ARGS, argv,
IDX_USE_SSL, true);
IDX_USE_SSL, false);
/* Read SSL/TLS connection details only if enabled */
if (settings->use_ssl) {

View File

@ -42,7 +42,7 @@
* The port to connect to when initiating any Kubernetes connection, if no
* other port is specified.
*/
#define GUAC_KUBERNETES_DEFAULT_PORT 8443
#define GUAC_KUBERNETES_DEFAULT_PORT 8080
/**
* The filename to use for the typescript, if not specified.