1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| [ req ]
default_bits = 256
default_md = sha256
default_keyfile = key.pem
prompt = no
encrypt_key = no
distinguished_name = dn
req_extensions = req_ext
x509_extensions = v3_ca
[ dn ]
C=HK
ST=Hong Kong
L=Hong Kong
O=Example Organization
OU=IT Department
emailAddress=contact@example.hk
CN = example.hk
[ req_ext ]
subjectAltName = @alt_names
[ v3_ca ]
subjectAltName = @alt_names
[ alt_names ]
IP.1 = 192.168.1.1
DNS.1 = example.hk
|