mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
586682e116
Co-authored-by: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com>
18 lines
719 B
XML
18 lines
719 B
XML
<!-- Config set into /etc/clickhouse-client/. It's used if no other configs are found. -->
|
|
<config>
|
|
<openSSL>
|
|
<client>
|
|
<loadDefaultCAFile>true</loadDefaultCAFile>
|
|
<cacheSessions>true</cacheSessions>
|
|
<disableProtocols>sslv2,sslv3</disableProtocols>
|
|
<preferServerCiphers>true</preferServerCiphers>
|
|
<invalidCertificateHandler>
|
|
<name>AcceptCertificateHandler</name> <!-- For tests only-->
|
|
</invalidCertificateHandler>
|
|
</client>
|
|
</openSSL>
|
|
|
|
<!-- Default timeout is 5 sec. Set it to 10 to avoid tests flakiness with slow builds (debug, tsan) -->
|
|
<sync_request_timeout>10</sync_request_timeout>
|
|
</config>
|