12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- [[!format sh """
- # X.509 Certificate options
- #
- # DN options
- # The organization of the subject.
- organization = "Love"
- # The organizational unit of the subject.
- unit = "Nature"
- # The locality of the subject.
- locality = "Earth"
- # The state of the certificate owner.
- state = "Solid"
- # The country of the subject. Two letter code.
- country = BT
- # The common name of the certificate owner.
- cn = "Rel4tion CA"
- # The serial number of the certificate. Should be incremented each time a new
- # certificate is generated, or comment the field for a time-based serial number.
- #serial = 001
- # In how many days, counting from today, this certificate will expire.
- expiration_days = 7300
- # An email in case of a person
- email = "fr33domlover@rel4tion.org"
- # An URL that has CRLs (certificate revocation lists)
- # available. Needed in CA certificates.
- crl_dist_points = "http://cert.rel4tion.org/crl/"
- # Whether this is a CA certificate or not
- ca
- # Whether this key will be used to sign other certificates.
- cert_signing_key
- # Whether this key will be used to sign CRLs.
- crl_signing_key
- """]]
|