-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
135 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[ req ] | ||
default_bits = 4096 | ||
default_keyfile = myTestServerCertificateKey.pem ## The default private key file name. | ||
default_md = sha256 | ||
distinguished_name = req_dn | ||
req_extensions = v3_req | ||
|
||
[ v3_req ] | ||
subjectKeyIdentifier = hash | ||
basicConstraints = CA:FALSE | ||
keyUsage = critical, digitalSignature, keyEncipherment | ||
nsComment = "OpenSSL Generated Certificate" | ||
extendedKeyUsage = serverAuth, clientAuth | ||
subjectAltName = @alt_names | ||
|
||
[ alt_names ] | ||
DNS.1 = mongo-0.demo2.open-iap.com | ||
DNS.2 = mongo-1.demo2.open-iap.com | ||
DNS.3 = mongoarbiter-0.demo2.open-iap.com | ||
DNS.4 = mongo-0.demo3.open-iap.com | ||
DNS.5 = mongo-1.demo3.open-iap.com | ||
DNS.6 = mongoarbiter-0.demo3.open-iap.com | ||
DNS.7 = mongo-0.demo2.openiap.io | ||
DNS.8 = mongo-1.demo2.openiap.io | ||
DNS.9 = mongoarbiter-0.demo2.openiap.io | ||
DNS.10 = mongo-0.demo3.openiap.io | ||
DNS.11 = mongo-1.demo3.openiap.io | ||
DNS.12 = mongoarbiter-0.demo3.openiap.io | ||
|
||
|
||
[ req_dn ] | ||
countryName = Country Name (2 letter code) | ||
countryName_default = AU | ||
countryName_min = 2 | ||
countryName_max = 2 | ||
|
||
stateOrProvinceName = State or Province Name (full name) | ||
stateOrProvinceName_default = Some-State | ||
|
||
localityName = Locality Name (eg, city) | ||
|
||
0.organizationName = Organization Name (eg, company) | ||
0.organizationName_default = Internet Widgits Pty Ltd | ||
|
||
# we can do this but it is not needed normally :-) | ||
#1.organizationName = Second Organization Name (eg, company) | ||
#1.organizationName_default = World Wide Web Pty Ltd | ||
|
||
organizationalUnitName = Organizational Unit Name (eg, section) | ||
#organizationalUnitName_default = | ||
|
||
commonName = Common Name (e.g. server FQDN or YOUR name) | ||
commonName_max = 64 | ||
|
||
emailAddress = Email Address | ||
emailAddress_max = 64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters