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.

42 lines
799 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. [account."toto"]
  6. contacts = [
  7. { mailto = "acme@example.org" },
  8. ]
  9. signature_algorithm = "HS384"
  10. [rate-limit."my-ca-limit"]
  11. number = 20
  12. period = "1s"
  13. [endpoint."my-ca"]
  14. url = "https://acme-v02.ac1.example.org/directory"
  15. rate_limits = ["my-ca-limit"]
  16. root_certificates = ["tests/root_certs/igc-a 2018.pem"]
  17. tos_agreed = true
  18. [hook."hook-1"]
  19. cmd = "cat"
  20. type = ["file-pre-edit"]
  21. [hook."hook-2"]
  22. cmd = "cat"
  23. args = [
  24. "-e"
  25. ]
  26. type = ["file-pre-edit"]
  27. [group]
  28. super-hook = ["hook-1", "hook-2"]
  29. [[certificate]]
  30. account = "toto"
  31. endpoint = "my-ca"
  32. identifiers = [
  33. { dns = "example.org", challenge = "http-01"},
  34. ]
  35. hooks = ["super-hook"]