mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
01a864a29d
Needs more tests.
34 lines
745 B
INI
34 lines
745 B
INI
[ ca ]
|
|
default_ca = CA_default
|
|
|
|
[ CA_default ]
|
|
serial = ca2-serial
|
|
crl = ca2-crl.pem
|
|
database = ca2-database.txt
|
|
name_opt = CA_default
|
|
cert_opt = CA_default
|
|
default_crl_days = 999
|
|
default_md = md5
|
|
|
|
|
|
[ req ]
|
|
default_bits = 1024
|
|
days = 999
|
|
distinguished_name = req_distinguished_name
|
|
attributes = req_attributes
|
|
prompt = no
|
|
output_password = password
|
|
|
|
[ req_distinguished_name ]
|
|
C = US
|
|
ST = CA
|
|
L = SF
|
|
O = Joyent
|
|
OU = Node.js
|
|
CN = ca2
|
|
emailAddress = ry@tinyclouds.org
|
|
|
|
[ req_attributes ]
|
|
challengePassword = A challenge password
|
|
|