mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 07:53:06 +01:00
142660c989
The certificates in test fixtures were set to expire in 999 days since they were generated. That time has passed, and they have to be reissued. Bump expiration time to 99999 days for all of them to prevent this from happening again in near future. PR-URL: https://github.com/nodejs/node/pull/22184 Fixes: https://github.com/nodejs/node/issues/22182 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
18 lines
469 B
INI
18 lines
469 B
INI
[ req ]
|
|
default_bits = 2048
|
|
days = 9999
|
|
distinguished_name = req_distinguished_name
|
|
attributes = req_attributes
|
|
prompt = no
|
|
|
|
[ req_distinguished_name ]
|
|
C = US
|
|
ST = CA
|
|
L = SF
|
|
O = NODEJS
|
|
OU = agent9
|
|
CN = localhost
|
|
|
|
[ req_attributes ]
|
|
challengePassword = A challenge password
|