GUACAMOLE-623: Default to unencrypted Kubernetes connections.
This commit is contained in:
parent
5bae422b29
commit
519c90a887
@ -68,7 +68,7 @@ enum KUBERNETES_ARGS_IDX {
|
|||||||
IDX_PORT,
|
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,
|
IDX_USE_SSL,
|
||||||
|
|
||||||
@ -223,7 +223,7 @@ guac_kubernetes_settings* guac_kubernetes_parse_args(guac_user* user,
|
|||||||
/* Parse whether SSL should be used */
|
/* Parse whether SSL should be used */
|
||||||
settings->use_ssl =
|
settings->use_ssl =
|
||||||
guac_user_parse_args_boolean(user, GUAC_KUBERNETES_CLIENT_ARGS, argv,
|
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 */
|
/* Read SSL/TLS connection details only if enabled */
|
||||||
if (settings->use_ssl) {
|
if (settings->use_ssl) {
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
* The port to connect to when initiating any Kubernetes connection, if no
|
* The port to connect to when initiating any Kubernetes connection, if no
|
||||||
* other port is specified.
|
* 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.
|
* The filename to use for the typescript, if not specified.
|
||||||
|
Loading…
Reference in New Issue
Block a user