mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-1453: Enable SSL connection between Guacamole and DB using MaraiDB Connector/J
This commit is contained in:
@@ -87,9 +87,12 @@ public class MySQLAuthenticationProviderModule implements Module {
|
|||||||
driverProperties.setProperty("sslMode", sslMode.getDriverValue());
|
driverProperties.setProperty("sslMode", sslMode.getDriverValue());
|
||||||
|
|
||||||
// For compatibility, set legacy useSSL property when SSL is disabled.
|
// For compatibility, set legacy useSSL property when SSL is disabled.
|
||||||
if (sslMode == MySQLSSLMode.DISABLED)
|
if (sslMode == MySQLSSLMode.DISABLED) {
|
||||||
driverProperties.setProperty("useSSL", "false");
|
driverProperties.setProperty("useSSL", "false");
|
||||||
|
} else {
|
||||||
|
driverProperties.setProperty("useSSL", "true");
|
||||||
|
}
|
||||||
|
|
||||||
// Check other SSL settings and set as required
|
// Check other SSL settings and set as required
|
||||||
File trustStore = environment.getMySQLSSLTrustStore();
|
File trustStore = environment.getMySQLSSLTrustStore();
|
||||||
if (trustStore != null)
|
if (trustStore != null)
|
||||||
|
Reference in New Issue
Block a user