From de5f7ededeb7fdf87c7218196e611b6a9df225df Mon Sep 17 00:00:00 2001 From: myuzhobcplidtkieno <62526817+myuzhobcplidtkieno@users.noreply.github.com> Date: Wed, 8 Apr 2020 08:08:28 +1200 Subject: Added the ability to use TLS when connecting to a database. (#24348) * Added the ability to use TLS when connecting to a database. * Trying to kickstart CI checks * Revert the kickstart change Co-authored-by: myuzhobcplidtkieno Co-authored-by: Giacomo Pozzoni (cherry picked from commit ae553f89664a4baade80020856c9ff66323de963) --- src/server/bnetserver/bnetserver.conf.dist | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/server/bnetserver') diff --git a/src/server/bnetserver/bnetserver.conf.dist b/src/server/bnetserver/bnetserver.conf.dist index 37e92682429..9f0c7648030 100644 --- a/src/server/bnetserver/bnetserver.conf.dist +++ b/src/server/bnetserver/bnetserver.conf.dist @@ -215,13 +215,16 @@ IPLocationFile = "" # # LoginDatabaseInfo # Description: Database connection settings for the realm server. -# Example: "hostname;port;username;password;database" +# Example: "hostname;port;username;password;database;ssl" # ".;some_number;username;password;database" - (Use named pipes on Windows # "enable-named-pipe" to [mysqld] # section my.ini) # ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on # Unix/Linux) # Default: "127.0.0.1;3306;trinity;trinity;auth" +# +# The SSL option will enable TLS when connecting to the specified database. If not provided or +# any value other than 'ssl' is set, TLS will not be used. LoginDatabaseInfo = "127.0.0.1;3306;trinity;trinity;auth" -- cgit v1.2.3