Files
qdrant/tests/e2e_tests/test_data/tls_config.yaml
tellet-q f0612d6680 Refactor bash tests: tls (#6995)
* Refactor tls bash test

* Update codespell

* Address review
2025-08-11 10:05:47 +02:00

33 lines
774 B
YAML

log_level: INFO
service:
# Use TLS for client communication
enable_tls: true
# Check user HTTPS client certificate against CA file specified in tls config
verify_https_client_certificate: true
cluster:
# Use `enabled: true` to run Qdrant in distributed deployment mode
enabled: true
# Configuration of the inter-cluster communication
p2p:
# Use mTLS for internal communication between peers
enable_tls: true
# Set to true to prevent service from sending usage statistics to the developers.
# Read more: https://qdrant.tech/documentation/guides/telemetry
telemetry_disabled: true
# TLS settings
tls:
# Certificate chain file
cert: ./tls/cert.pem
# Private key file
key: ./tls/key.pem
# Client certificate
ca_cert: ./tls/cacert.pem