File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,10 @@ content: |
64
64
outputs each certificate in the chain to your current working
65
65
directory, in ``.crt`` format:
66
66
67
- .. using path to openssl to preempt macOS libressl issues
68
-
69
67
.. code-block:: sh
70
68
71
- /usr/local/opt/openssl/bin/ openssl s_client -showcerts -verify 2 \
72
- -connect downloads.mongodb.com:443 < /dev/null \
69
+ openssl s_client -showcerts -verify 2 \
70
+ -connect downloads.mongodb.com:443 -servername downloads.mongodb.com < /dev/null \
73
71
| awk '/BEGIN/,/END/{ if(/BEGIN/){a++}; out="cert"a".crt"; print >out}'
74
72
75
73
#. Concatenate your |certauth|\'s certificate file with the
Original file line number Diff line number Diff line change @@ -59,12 +59,10 @@ content: |
59
59
outputs each certificate in the chain to your current working
60
60
directory, in ``.crt`` format:
61
61
62
- .. using path to openssl to preempt macOS libressl issues
63
-
64
62
.. code-block:: sh
65
63
66
- openssl s_client -servername downloads.mongodb.com - showcerts -verify 2 \
67
- -connect downloads.mongodb.com:443 < /dev/null \
64
+ openssl s_client -showcerts -verify 2 \
65
+ -connect downloads.mongodb.com:443 -servername downloads.mongodb.com < /dev/null \
68
66
| awk '/BEGIN/,/END/{ if(/BEGIN/){a++}; out="cert"a".crt"; print >out}'
69
67
70
68
#. Concatenate your |certauth|\'s certificate file with the
You can’t perform that action at this time.
0 commit comments