mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"SEARCH_BACKEND_SONIC_HOST_NAME": {
|
|
"type": "string",
|
|
"default": "127.0.0.1",
|
|
"x-aliases": ["SEARCH_BACKEND_HOST_NAME", "SONIC_HOST"],
|
|
"description": "Sonic server hostname"
|
|
},
|
|
"SEARCH_BACKEND_SONIC_PORT": {
|
|
"type": "integer",
|
|
"default": 1491,
|
|
"minimum": 1,
|
|
"maximum": 65535,
|
|
"x-aliases": ["SEARCH_BACKEND_PORT", "SONIC_PORT"],
|
|
"description": "Sonic server port"
|
|
},
|
|
"SEARCH_BACKEND_SONIC_PASSWORD": {
|
|
"type": "string",
|
|
"default": "SecretPassword",
|
|
"x-aliases": ["SEARCH_BACKEND_PASSWORD", "SONIC_PASSWORD"],
|
|
"description": "Sonic server password"
|
|
},
|
|
"SEARCH_BACKEND_SONIC_COLLECTION": {
|
|
"type": "string",
|
|
"default": "archivebox",
|
|
"x-aliases": ["SONIC_COLLECTION"],
|
|
"description": "Sonic collection name"
|
|
},
|
|
"SEARCH_BACKEND_SONIC_BUCKET": {
|
|
"type": "string",
|
|
"default": "snapshots",
|
|
"x-aliases": ["SONIC_BUCKET"],
|
|
"description": "Sonic bucket name"
|
|
}
|
|
}
|
|
}
|