config.json 740 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "ARCHIVEDOTORG_ENABLED": {
  7. "type": "boolean",
  8. "default": true,
  9. "x-aliases": ["SAVE_ARCHIVEDOTORG", "USE_ARCHIVEDOTORG", "SUBMIT_ARCHIVEDOTORG"],
  10. "description": "Submit URLs to archive.org Wayback Machine"
  11. },
  12. "ARCHIVEDOTORG_TIMEOUT": {
  13. "type": "integer",
  14. "default": 60,
  15. "minimum": 10,
  16. "x-fallback": "TIMEOUT",
  17. "description": "Timeout for archive.org submission in seconds"
  18. },
  19. "ARCHIVEDOTORG_USER_AGENT": {
  20. "type": "string",
  21. "default": "",
  22. "x-fallback": "USER_AGENT",
  23. "description": "User agent string"
  24. }
  25. }
  26. }