You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/common/modules/proc_creating-a-custom-ssl-certificate.adoc
+38-18Lines changed: 38 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,22 +71,29 @@ x509_extensions = usr_cert
71
71
prompt = no
72
72
73
73
[ req_distinguished_name ]
74
-
commonName = _{ssl-common-name}_ <1>
74
+
commonName = _{ssl-common-name}_
75
75
76
76
[ v3_req ]
77
77
basicConstraints = CA:FALSE
78
78
keyUsage = digitalSignature, keyEncipherment
79
79
extendedKeyUsage = serverAuth, clientAuth
80
80
subjectAltName = @alt_names
81
81
82
-
[alt_names] <2>
82
+
[alt_names]
83
83
DNS.1 = _{loadbalancer-example-com}_
84
84
DNS.2 = _{smartproxy-example-com}_
85
85
----
86
-
<1> The certificate's common name must match the FQDN of {SmartProxyServer}.
86
+
+
87
+
The options used in the configuration file include the following:
88
+
+
89
+
`commonName`::
90
+
The certificate common name.
91
+
It must match the FQDN of {SmartProxyServer}.
87
92
Ensure to change this when running the command on each {SmartProxyServer} that you configure for load balancing.
88
93
You can also set a wildcard value `*`.
89
-
<2> Under `[alt_names]`, include the FQDN of the load balancer as `DNS.1` and the FQDN of {SmartProxyServer} as `DNS.2`.
94
+
`[alt_names]`::
95
+
The alternative names for the load balancer and {SmartProxyServer}.
96
+
Include the FQDN of the load balancer as `DNS.1` and the FQDN of {SmartProxyServer} as `DNS.2`.
90
97
endif::[]
91
98
+
92
99
For more information about the `[ v3_req ]` parameters and their purpose, see link:https://www.rfc-editor.org/rfc/rfc5280[RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile].
@@ -96,28 +103,41 @@ For more information about the `[ v3_req ]` parameters and their purpose, see li
0 commit comments