blob: 75e95368a5c477d882e733afc26c31ae9876b52e (
plain)
1 # create RSA certs - Server
2
3 RANDFILE = src/ssl.rnd
4
5 [ req ]
6 default_bits = 2048
7 encrypt_key = yes
8 distinguished_name = req_dn
9 x509_extensions = cert_type
10
11 [ req_dn ]
12 countryName = Country Name
13 countryName_default = DE
14 countryName_min = 2
15 countryName_max = 2
16
17 stateOrProvinceName = State/Province
18 stateOrProvinceName_default = Somewhere
19
20 localityName = Locality Name (eg, city)
21
22 0.organizationName = Organization Name (eg, company)
23 0.organizationName_default = tCl
24
25 organizationalUnitName = Organizational Unit Name (eg, section)
26 organizationalUnitName_default = psyBNC
27
28 0.commonName = Common Name (Full domain of your server)
29 1.commonName_value = localhost
30
31 [ cert_type ]
32 nsCertType = server
|