mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 18:10:58 -05:00
33 lines
774 B
YAML
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
|