davanstrien HF staff commited on
Commit
8b92c24
1 Parent(s): 7d29877

Update config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +16 -1
config.yaml CHANGED
@@ -1,11 +1,26 @@
 
 
1
  storage:
2
  storage_path: /data/storage
3
  snapshots_path: /data/snapshots
 
 
 
4
 
5
  service:
6
  host: 0.0.0.0
7
  http_port: 6333
8
  grpc_port: 6334
 
 
 
 
 
9
  api_key: ${QDRANT__SERVICE__API_KEY}
10
 
11
- log_level: INFO
 
 
 
 
 
 
1
+ log_level: DEBUG
2
+
3
  storage:
4
  storage_path: /data/storage
5
  snapshots_path: /data/snapshots
6
+
7
+ # Spaces might have limited memory, so let's use on-disk storage
8
+ on_disk_payload: true
9
 
10
  service:
11
  host: 0.0.0.0
12
  http_port: 6333
13
  grpc_port: 6334
14
+
15
+ # Enable CORS for browser-based access
16
+ enable_cors: true
17
+
18
+ # Use environment variable for API key
19
  api_key: ${QDRANT__SERVICE__API_KEY}
20
 
21
+ # Disable telemetry in Spaces
22
+ telemetry_disabled: true
23
+
24
+ # Cluster configuration should be disabled for single-node setup in Spaces
25
+ cluster:
26
+ enabled: false