123456789101112131415161718192021222324252627282930313233343536 |
- [ req ]
- default_bits = 2048
- days = 9999
- distinguished_name = req_distinguished_name
- attributes = req_attributes
- prompt = no
- x509_extensions = v3_ca
- req_extensions = v3_req
- [ req_distinguished_name ]
- C = SE
- ST = Stockholm
- L = Stockholm
- CN = agentkeepalive.com
- [ req_attributes ]
- challengePassword = password
- [ v3_ca ]
- authorityInfoAccess = @issuer_info
- [ v3_req ]
- subjectAltName = @alt_names
- # Extensions to add to a certificate request
- basicConstraints = CA:FALSE
- keyUsage = nonRepudiation, digitalSignature, keyEncipherment
- [ issuer_info ]
- OCSP;URI.0 = http://ocsp.example.com/
- caIssuers;URI.0 = http://example.com/ca.cert
- [ alt_names ]
- IP.1 = 127.0.0.1
- IP.2 = ::1
- DNS.1 = localhost
|