mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
27 lines
740 B
JSON
27 lines
740 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"ARCHIVEDOTORG_ENABLED": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["SAVE_ARCHIVEDOTORG", "USE_ARCHIVEDOTORG", "SUBMIT_ARCHIVEDOTORG"],
|
|
"description": "Submit URLs to archive.org Wayback Machine"
|
|
},
|
|
"ARCHIVEDOTORG_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 60,
|
|
"minimum": 10,
|
|
"x-fallback": "TIMEOUT",
|
|
"description": "Timeout for archive.org submission in seconds"
|
|
},
|
|
"ARCHIVEDOTORG_USER_AGENT": {
|
|
"type": "string",
|
|
"default": "",
|
|
"x-fallback": "USER_AGENT",
|
|
"description": "User agent string"
|
|
}
|
|
}
|
|
}
|