We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb03f2a commit 44b4b0aCopy full SHA for 44b4b0a
_fixture/certs/README.md
@@ -1,8 +1,13 @@
1
-To Generate valid certificate and private key use following command:
+To generate a valid certificate and private key use following command:
2
3
```bash
4
# In OpenSSL ≥ 1.1.1
5
openssl req -x509 -newkey rsa:4096 -sha256 -days 9999 -nodes \
6
-keyout key.pem -out cert.pem -subj "/CN=localhost" \
7
-addext "subjectAltName=DNS:localhost,IP:127.0.0.1,IP:::1"
8
```
9
+
10
+To check a certificate use following command:
11
+```bash
12
+openssl x509 -in cert.pem -text
13
+```
0 commit comments