secondary.conf 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "version": 3,
  3. "Logging": {
  4. "loggers": [ {
  5. "debuglevel": 99,
  6. "severity": "DEBUG",
  7. "name": "*"
  8. } ]
  9. },
  10. "Auth": {
  11. "listen_on": [ {
  12. "port": 47806,
  13. "address": "127.0.0.1"
  14. } ]
  15. },
  16. "data_sources": {
  17. "classes": {
  18. "IN": [
  19. {
  20. "type": "sqlite3",
  21. "params": {
  22. "database_file": "data/example.org.sqlite3"
  23. },
  24. "cache-enable": true,
  25. "cache-zones": [
  26. "example.org"
  27. ]
  28. }
  29. ]
  30. }
  31. },
  32. "Init": {
  33. "components": {
  34. "b10-auth": { "kind": "needed", "special": "auth" },
  35. "b10-xfrin": { "address": "Xfrin", "kind": "dispensable" },
  36. "b10-zonemgr": { "address": "Zonemgr", "kind": "dispensable" },
  37. "b10-cmdctl": { "special": "cmdctl", "kind": "needed" }
  38. }
  39. }
  40. }