mirror of
https://github.com/project-zot/zot.git
synced 2026-06-18 05:28:07 +08:00
e2aa088e0d
initial working prototype for sync fix: pre-load chunk readers on manifest fetch feat: make chunkSize configurable fix minimal build fix: linter errors Signed-off-by: Vishwas Rajashekar <dev@vrajashkr.com>
32 lines
507 B
JSON
32 lines
507 B
JSON
{
|
|
"distSpecVersion": "1.1.1",
|
|
"storage": {
|
|
"rootDirectory": "./temp/zotstream"
|
|
},
|
|
"http": {
|
|
"address": "127.0.0.1",
|
|
"port": "8080"
|
|
},
|
|
"log": {
|
|
"level": "debug"
|
|
},
|
|
"extensions": {
|
|
"sync": {
|
|
"enable": true,
|
|
"enableStreaming": true,
|
|
"streamChunkSizeBytes": 32768,
|
|
"registries": [
|
|
{
|
|
"urls": [
|
|
"http://localhost:9000"
|
|
],
|
|
"onDemand": true,
|
|
"tlsVerify": false,
|
|
"maxRetries": 5,
|
|
"retryDelay": "30s",
|
|
"syncTimeout": "10m"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |