Fixed tls config..

This commit is contained in:
mguschin
2026-02-04 13:52:52 +03:00
parent 41dc0258a0
commit bdcb7e1709

View File

@@ -55,10 +55,17 @@ component_ports = { 5347 }
http_ports = { 5280 } http_ports = { 5280 }
https_ports = { 5281 } https_ports = { 5281 }
-- Disable TLS on c2s/s2s by default for docker -- Require TLS on c2s/s2s connections
c2s_require_encryption = false c2s_require_encryption = true
s2s_require_encryption = false s2s_require_encryption = false
-- TLS/SSL options for all connections
ssl = {
protocol = "tlsv1_2+";
ciphers = "HIGH:!aNULL:!MD5";
options = { "no_sslv2", "no_sslv3", "no_compression", "cipher_server_preference" };
}
-- Disable SASLauth external authentication -- Disable SASLauth external authentication
authentication = "internal_plain" authentication = "internal_plain"