diff --git a/Documentation/Tutorials/Configuring-Servers.md b/Documentation/Tutorials/Configuring-Servers.md index 8c7f8c06c..0f9ddd16d 100644 --- a/Documentation/Tutorials/Configuring-Servers.md +++ b/Documentation/Tutorials/Configuring-Servers.md @@ -25,3 +25,16 @@ protocol=MariaDBBackend The `address` and `port` parameters tell where the server is located. The `protocol` should always be set to `MariaDBBackend`. + +## Enabling TLS + +To enable encryption for the MaxScale-to-MariaDB communication, add `ssl=true` +to the server section. To enable server certificate verification, add +`ssl_verify_peer_certificate=true`. + +The `ssl` and `ssl_verify_peer_certificate` parameters are similar to the +`--ssl` and `--ssl-verify-server-cert` options of the `mysql` command line +client. + +For more information about TLS, refer to the +[Configuration Guide](../Getting-Started/Configuration-Guide.md).