ca-template-initial.mdwn 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [[!format sh """
  2. # X.509 Certificate options
  3. #
  4. # DN options
  5. # The organization of the subject.
  6. organization = "Love"
  7. # The organizational unit of the subject.
  8. unit = "Nature"
  9. # The locality of the subject.
  10. locality = "Earth"
  11. # The state of the certificate owner.
  12. state = "Solid"
  13. # The country of the subject. Two letter code.
  14. country = BT
  15. # The common name of the certificate owner.
  16. cn = "Rel4tion CA"
  17. # The serial number of the certificate. Should be incremented each time a new
  18. # certificate is generated, or comment the field for a time-based serial number.
  19. #serial = 001
  20. # In how many days, counting from today, this certificate will expire.
  21. expiration_days = 7300
  22. # An email in case of a person
  23. email = "fr33domlover@rel4tion.org"
  24. # An URL that has CRLs (certificate revocation lists)
  25. # available. Needed in CA certificates.
  26. crl_dist_points = "http://cert.rel4tion.org/crl/"
  27. # Whether this is a CA certificate or not
  28. ca
  29. # Whether this key will be used to sign other certificates.
  30. cert_signing_key
  31. # Whether this key will be used to sign CRLs.
  32. crl_signing_key
  33. """]]