mirror of https://github.com/docker/docs.git
Merge pull request #610 from fbouliane/add-dns-host-to-instructions
Add DNS SubjectAltName to certificate recipe
This commit is contained in:
commit
a9e535f3bd
|
|
@ -78,7 +78,7 @@ Since TLS connections can be made via IP address as well as DNS name, they need
|
||||||
to be specified when creating the certificate. For example, to allow connections
|
to be specified when creating the certificate. For example, to allow connections
|
||||||
using `10.10.10.20` and `127.0.0.1`:
|
using `10.10.10.20` and `127.0.0.1`:
|
||||||
|
|
||||||
$ echo subjectAltName = IP:10.10.10.20,IP:127.0.0.1 > extfile.cnf
|
$ echo subjectAltName = DNS:$HOST,IP:10.10.10.20,IP:127.0.0.1 > extfile.cnf
|
||||||
|
|
||||||
$ openssl x509 -req -days 365 -sha256 -in server.csr -CA ca.pem -CAkey ca-key.pem \
|
$ openssl x509 -req -days 365 -sha256 -in server.csr -CA ca.pem -CAkey ca-key.pem \
|
||||||
-CAcreateserial -out server-cert.pem -extfile extfile.cnf
|
-CAcreateserial -out server-cert.pem -extfile extfile.cnf
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue