mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
27 lines
660 B
JSON
27 lines
660 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"FAVICON_ENABLED": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["SAVE_FAVICON", "USE_FAVICON"],
|
|
"description": "Enable favicon downloading"
|
|
},
|
|
"FAVICON_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 30,
|
|
"minimum": 5,
|
|
"x-fallback": "TIMEOUT",
|
|
"description": "Timeout for favicon fetch in seconds"
|
|
},
|
|
"FAVICON_USER_AGENT": {
|
|
"type": "string",
|
|
"default": "",
|
|
"x-fallback": "USER_AGENT",
|
|
"description": "User agent string"
|
|
}
|
|
}
|
|
}
|