Files
ArchiveBox/archivebox/plugins/favicon/config.json
2025-12-24 20:10:38 -08:00

32 lines
796 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"SAVE_FAVICON": {
"type": "boolean",
"default": true,
"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"
},
"FAVICON_CHECK_SSL_VALIDITY": {
"type": "boolean",
"default": true,
"x-fallback": "CHECK_SSL_VALIDITY",
"description": "Whether to verify SSL certificates"
}
}
}