service-template-example.mdwn 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 = "Plasma"
  13. # The country of the subject. Two letter code.
  14. country = IS
  15. # The common name of the certificate owner.
  16. cn = "Rel4tion"
  17. # A user id of the certificate owner.
  18. #uid = "rel4tion"
  19. # The serial number of the certificate. Should be incremented each time a new
  20. # certificate is generated, or comment the field for a time-based serial number.
  21. #serial = 001
  22. # In how many days, counting from today, this certificate will expire.
  23. expiration_days = 730
  24. # An email in case of a person
  25. email = "fr33domlover@rel4tion.org"
  26. # X.509 v3 extensions
  27. # DNS name(s) of the server
  28. dns_name = "mail.rel4tion.org"
  29. dns_name = "mail.partager.null"
  30. # (Optional) Server IP address
  31. #ip_address = "14.285.714.28"
  32. # Whether this certificate will be used for a TLS server
  33. tls_www_server
  34. # Whether this certificate will be used to sign data (needed
  35. # in TLS DHE ciphersuites).
  36. #signing_key
  37. # Whether this certificate will be used to encrypt data (needed
  38. # in TLS RSA ciphersuites). Note that it is preferred to use different
  39. # keys for encryption and signing.
  40. encryption_key
  41. """]]