You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1016 B

  1. [global]
  2. accounts_directory = "/tmp/example/account/dir"
  3. certificates_directory = "/tmp/example/cert/dir/"
  4. root_certificates = ["tests/root_certs/igc-a 2011.pem"]
  5. [[logging_facility]]
  6. output = "stderr"
  7. format = "pretty"
  8. level = "trace"
  9. [[logging_facility]]
  10. output = "syslog"
  11. ansi = false
  12. [[logging_facility]]
  13. output = "/tmp/acmed_test.log.json"
  14. format = "json"
  15. level = "debug"
  16. [account."toto"]
  17. contacts = [
  18. { mailto = "acme@example.org" },
  19. ]
  20. signature_algorithm = "HS384"
  21. [rate-limit."my-ca-limit"]
  22. number = 20
  23. period = "1s"
  24. [endpoint."my-ca"]
  25. url = "https://acme-v02.ac1.example.org/directory"
  26. rate_limits = ["my-ca-limit"]
  27. root_certificates = ["tests/root_certs/igc-a 2018.pem"]
  28. tos_agreed = true
  29. [hook."hook-1"]
  30. cmd = "cat"
  31. type = ["file-pre-edit"]
  32. [hook."hook-2"]
  33. cmd = "cat"
  34. args = [
  35. "-e"
  36. ]
  37. type = ["file-pre-edit"]
  38. [group]
  39. super-hook = ["hook-1", "hook-2"]
  40. [[certificate]]
  41. account = "toto"
  42. endpoint = "my-ca"
  43. identifiers = [
  44. { dns = "example.org", challenge = "http-01"},
  45. ]
  46. hooks = ["super-hook"]