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.

40 lines
687 B

  1. [global]
  2. accounts_directory = "/tmp/example/account/dir"
  3. certificates_directory = "/tmp/example/cert/dir/"
  4. [account."toto"]
  5. contacts = [
  6. { mailto = "acme@example.org" },
  7. ]
  8. signature_algorithm = "HS384"
  9. [rate-limit."my-ca-limit"]
  10. number = 20
  11. period = "1s"
  12. [endpoint."my-ca"]
  13. url = "https://acme-v02.ac1.example.org/directory"
  14. rate_limits = ["my-ca-limit"]
  15. tos_agreed = true
  16. [hook."hook-1"]
  17. cmd = "cat"
  18. type = ["file-pre-edit"]
  19. [hook."hook-2"]
  20. cmd = "cat"
  21. args = [
  22. "-e"
  23. ]
  24. type = ["file-pre-edit"]
  25. [group]
  26. super-hook = ["hook-1", "hook-2"]
  27. [[certificate]]
  28. account = "toto"
  29. endpoint = "my-ca"
  30. identifiers = [
  31. { dns = "example.org", challenge = "http-01"},
  32. ]
  33. hooks = ["super-hook"]