diff options
| author | myuzhobcplidtkieno <62526817+myuzhobcplidtkieno@users.noreply.github.com> | 2020-04-08 08:08:28 +1200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-01-01 01:07:52 +0100 |
| commit | de5f7ededeb7fdf87c7218196e611b6a9df225df (patch) | |
| tree | 1714f64910f1f844256edf46708cdb4f5090e847 /src/server/worldserver | |
| parent | d0e1794d995666ec6dd4995c481327264399d340 (diff) | |
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 <myuzhobcplidtkieno@github.com>
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
(cherry picked from commit ae553f89664a4baade80020856c9ff66323de963)
Diffstat (limited to 'src/server/worldserver')
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 8e2c0cb143d..945c2375c10 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -93,7 +93,7 @@ LogsDir = "" # CharacterDatabaseInfo # HotfixDatabaseInfo # Description: Database connection settings for the world 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) @@ -109,6 +109,8 @@ LogsDir = "" # search for TCE00016 on forum. # Don't open port on firewall to external connections (it belongs to MySQL, not to wow server). # The username you choose must have permissions to create/alter/rename tables. +# 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" WorldDatabaseInfo = "127.0.0.1;3306;trinity;trinity;world" |
