localhost.cnf 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. #
  2. # OpenSSL example configuration file.
  3. # This is mostly being used for generation of certificate requests.
  4. #
  5. # This definition stops the following lines choking if HOME isn't
  6. # defined.
  7. HOME = .
  8. RANDFILE = $ENV::HOME/.rnd
  9. # Extra OBJECT IDENTIFIER info:
  10. #oid_file = $ENV::HOME/.oid
  11. oid_section = new_oids
  12. hostname = ${ENV::HOSTNAME}
  13. ipaddress1 = ${ENV::IPADDRESS1}
  14. ipaddress2 = ${ENV::IPADDRESS2}
  15. # To use this configuration file with the "-extfile" option of the
  16. # "openssl x509" utility, name here the section containing the
  17. # X.509v3 extensions to use:
  18. # extensions =
  19. # (Alternatively, use a configuration file that has only
  20. # X.509v3 extensions in its main [= default] section.)
  21. [ new_oids ]
  22. # We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
  23. # Add a simple OID like this:
  24. # testoid1=1.2.3.4
  25. # Or use config file substitution like this:
  26. # testoid2=${testoid1}.5.6
  27. # Policies used by the TSA examples.
  28. tsa_policy1 = 1.2.3.4.1
  29. tsa_policy2 = 1.2.3.4.5.6
  30. tsa_policy3 = 1.2.3.4.5.7
  31. ####################################################################
  32. [ ca ]
  33. default_ca = CA_default # The default ca section
  34. ####################################################################
  35. [ CA_default ]
  36. dir = ./ca/ # Where everything is kept
  37. certs = $dir/certs # Where the issued certs are kept
  38. crl_dir = $dir/crl # Where the issued crl are kept
  39. database = $dir/database.txt # database index file.
  40. #unique_subject = no # Set to 'no' to allow creation of
  41. # several ctificates with same subject.
  42. new_certs_dir = $dir/newcerts # default place for new certs.
  43. certificate = $dir/ca.crt # The CA certificate
  44. serial = $dir/serial # The current serial number
  45. crlnumber = $dir/crlnumber # the current crl number
  46. # must be commented out to leave a V1 CRL
  47. crl = $dir/crl.pem # The current CRL
  48. private_key = $dir/ca.key # The private key
  49. RANDFILE = $dir/.rand # private random number file
  50. x509_extensions = usr_cert # The extensions to add to the cert
  51. # Comment out the following two lines for the "traditional"
  52. # (and highly broken) format.
  53. name_opt = ca_default # Subject Name options
  54. cert_opt = ca_default # Certificate field options
  55. # Extension copying option: use with caution.
  56. # copy_extensions = copy
  57. # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
  58. # so this is commented out by default to leave a V1 CRL.
  59. # crlnumber must also be commented out to leave a V1 CRL.
  60. crl_extensions = crl_ext
  61. default_days = 365 # how long to certify for
  62. default_crl_days= 30 # how long before next CRL
  63. default_md = default # use public key default MD
  64. preserve = no # keep passed DN ordering
  65. # A few difference way of specifying how similar the request should look
  66. # For type CA, the listed attributes must be the same, and the optional
  67. # and supplied fields are just that :-)
  68. policy = policy_match
  69. # For the CA policy
  70. [ policy_match ]
  71. countryName = match
  72. stateOrProvinceName = match
  73. organizationName = match
  74. organizationalUnitName = optional
  75. commonName = supplied
  76. emailAddress = optional
  77. # For the 'anything' policy
  78. # At this point in time, you must list all acceptable 'object'
  79. # types.
  80. [ policy_anything ]
  81. countryName = optional
  82. stateOrProvinceName = optional
  83. localityName = optional
  84. organizationName = optional
  85. organizationalUnitName = optional
  86. commonName = supplied
  87. emailAddress = optional
  88. ####################################################################
  89. [ req ]
  90. default_bits = 2048
  91. default_keyfile = privkey.pem
  92. distinguished_name = req_distinguished_name
  93. attributes = req_attributes
  94. x509_extensions = v3_ca # The extensions to add to the self signed cert
  95. # Passwords for private keys if not present they will be prompted for
  96. # input_password = secret
  97. # output_password = secret
  98. # This sets a mask for permitted string types. There are several options.
  99. # default: PrintableString, T61String, BMPString.
  100. # pkix : PrintableString, BMPString (PKIX recommendation before 2004)
  101. # utf8only: only UTF8Strings (PKIX recommendation after 2004).
  102. # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
  103. # MASK:XXXX a literal mask value.
  104. # WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
  105. string_mask = utf8only
  106. req_extensions = v3_req # The extensions to add to a certificate request
  107. [ req_distinguished_name ]
  108. countryName = Country Name (2 letter code)
  109. countryName_default = AU
  110. countryName_min = 2
  111. countryName_max = 2
  112. stateOrProvinceName = State or Province Name (full name)
  113. stateOrProvinceName_default = Some-State
  114. localityName = Locality Name (eg, city)
  115. 0.organizationName = Organization Name (eg, company)
  116. 0.organizationName_default = Internet Widgits Pty Ltd
  117. # we can do this but it is not needed normally :-)
  118. #1.organizationName = Second Organization Name (eg, company)
  119. #1.organizationName_default = World Wide Web Pty Ltd
  120. organizationalUnitName = Organizational Unit Name (eg, section)
  121. #organizationalUnitName_default =
  122. commonName = Common Name (e.g. server FQDN or YOUR name)
  123. commonName_max = 64
  124. emailAddress = Email Address
  125. emailAddress_max = 64
  126. # SET-ex3 = SET extension number 3
  127. [ req_attributes ]
  128. challengePassword = A challenge password
  129. challengePassword_min = 4
  130. challengePassword_max = 20
  131. unstructuredName = An optional company name
  132. [ usr_cert ]
  133. # These extensions are added when 'ca' signs a request.
  134. # This goes against PKIX guidelines but some CAs do it and some software
  135. # requires this to avoid interpreting an end user certificate as a CA.
  136. basicConstraints=CA:FALSE
  137. # Here are some examples of the usage of nsCertType. If it is omitted
  138. # the certificate can be used for anything *except* object signing.
  139. # This is OK for an SSL server.
  140. # nsCertType = server
  141. # For an object signing certificate this would be used.
  142. # nsCertType = objsign
  143. # For normal client use this is typical
  144. # nsCertType = client, email
  145. # and for everything including object signing:
  146. # nsCertType = client, email, objsign
  147. # This is typical in keyUsage for a client certificate.
  148. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  149. # This will be displayed in Netscape's comment listbox.
  150. nsComment = "OpenSSL Generated Certificate"
  151. # PKIX recommendations harmless if included in all certificates.
  152. subjectKeyIdentifier=hash
  153. authorityKeyIdentifier=keyid,issuer
  154. # This stuff is for subjectAltName and issuerAltname.
  155. # Import the email address.
  156. # subjectAltName=email:copy
  157. # An alternative to produce certificates that aren't
  158. # deprecated according to PKIX.
  159. # subjectAltName=email:move
  160. # Copy subject details
  161. # issuerAltName=issuer:copy
  162. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  163. #nsBaseUrl
  164. #nsRevocationUrl
  165. #nsRenewalUrl
  166. #nsCaPolicyUrl
  167. #nsSslServerName
  168. # This is required for TSA certificates.
  169. extendedKeyUsage = critical,timeStamping
  170. [ v3_req ]
  171. # Extensions to add to a certificate request
  172. basicConstraints = CA:FALSE
  173. keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  174. subjectAltName = @alt_names
  175. [ alt_names ]
  176. DNS.1 = ${hostname}
  177. DNS.2 = ${hostname}
  178. IP.1 = ${ipaddress1}
  179. IP.2 = ${ipaddress2}
  180. URI.1 = urn:open62541.server.application
  181. [ v3_ca ]
  182. # Extensions for a typical CA
  183. # PKIX recommendation.
  184. subjectKeyIdentifier=hash
  185. authorityKeyIdentifier=keyid:always,issuer
  186. # This is what PKIX recommends but some broken software chokes on critical
  187. # extensions.
  188. #basicConstraints = critical,CA:true
  189. # So we do this instead.
  190. basicConstraints = CA:false
  191. # Key usage: this is typical for a CA certificate. However since it will
  192. # prevent it being used as an test self-signed certificate it is best
  193. # left out by default.
  194. # keyUsage = cRLSign, keyCertSign
  195. keyUsage = nonRepudiation, digitalSignature, keyEncipherment, dataEncipherment, keyCertSign
  196. extendedKeyUsage = TLS Web Server Authentication, TLS Web Client Authentication
  197. # Some might want this also
  198. # nsCertType = sslCA, emailCA
  199. # Include email address in subject alt name: another PKIX recommendation
  200. # subjectAltName=email:copy
  201. # Copy issuer details
  202. # issuerAltName=issuer:copy
  203. # DER hex encoding of an extension: beware experts only!
  204. # obj=DER:02:03
  205. # Where 'obj' is a standard or added object
  206. # You can even override a supported extension:
  207. # basicConstraints= critical, DER:30:03:01:01:FF
  208. subjectAltName = @alt_names
  209. [ crl_ext ]
  210. # CRL extensions.
  211. # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
  212. # issuerAltName=issuer:copy
  213. authorityKeyIdentifier=keyid:always
  214. [ proxy_cert_ext ]
  215. # These extensions should be added when creating a proxy certificate
  216. # This goes against PKIX guidelines but some CAs do it and some software
  217. # requires this to avoid interpreting an end user certificate as a CA.
  218. basicConstraints=CA:FALSE
  219. # Here are some examples of the usage of nsCertType. If it is omitted
  220. # the certificate can be used for anything *except* object signing.
  221. # This is OK for an SSL server.
  222. # nsCertType = server
  223. # For an object signing certificate this would be used.
  224. # nsCertType = objsign
  225. # For normal client use this is typical
  226. # nsCertType = client, email
  227. # and for everything including object signing:
  228. # nsCertType = client, email, objsign
  229. # This is typical in keyUsage for a client certificate.
  230. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  231. # This will be displayed in Netscape's comment listbox.
  232. nsComment = "OpenSSL Generated Certificate"
  233. # PKIX recommendations harmless if included in all certificates.
  234. subjectKeyIdentifier=hash
  235. authorityKeyIdentifier=keyid,issuer
  236. # This stuff is for subjectAltName and issuerAltname.
  237. # Import the email address.
  238. # subjectAltName=email:copy
  239. # An alternative to produce certificates that aren't
  240. # deprecated according to PKIX.
  241. # subjectAltName=email:move
  242. # Copy subject details
  243. # issuerAltName=issuer:copy
  244. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  245. #nsBaseUrl
  246. #nsRevocationUrl
  247. #nsRenewalUrl
  248. #nsCaPolicyUrl
  249. #nsSslServerName
  250. # This really needs to be in place for it to be a proxy certificate.
  251. proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
  252. ####################################################################
  253. [ tsa ]
  254. default_tsa = tsa_config1 # the default TSA section
  255. [ tsa_config1 ]
  256. # These are used by the TSA reply generation only.
  257. dir = ./demoCA # TSA root directory
  258. serial = $dir/tsaserial # The current serial number (mandatory)
  259. crypto_device = builtin # OpenSSL engine to use for signing
  260. signer_cert = $dir/tsacert.pem # The TSA signing certificate
  261. # (optional)
  262. certs = $dir/cacert.pem # Certificate chain to include in reply
  263. # (optional)
  264. signer_key = $dir/private/tsakey.pem # The TSA private key (optional)
  265. default_policy = tsa_policy1 # Policy if request did not specify it
  266. # (optional)
  267. other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional)
  268. digests = md5, sha1 # Acceptable message digests (mandatory)
  269. accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
  270. clock_precision_digits = 0 # number of digits after dot. (optional)
  271. ordering = yes # Is ordering defined for timestamps?
  272. # (optional, default: no)
  273. tsa_name = yes # Must the TSA name be included in the reply?
  274. # (optional, default: no)
  275. ess_cert_id_chain = no # Must the ESS cert id chain be included?
  276. # (optional, default: no)