Skip to content

Commit 44b4b0a

Browse files
committed
Fix spelling and grammar
1 parent fb03f2a commit 44b4b0a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

_fixture/certs/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
To Generate valid certificate and private key use following command:
1+
To generate a valid certificate and private key use following command:
22

33
```bash
44
# In OpenSSL ≥ 1.1.1
55
openssl req -x509 -newkey rsa:4096 -sha256 -days 9999 -nodes \
66
-keyout key.pem -out cert.pem -subj "/CN=localhost" \
77
-addext "subjectAltName=DNS:localhost,IP:127.0.0.1,IP:::1"
88
```
9+
10+
To check a certificate use following command:
11+
```bash
12+
openssl x509 -in cert.pem -text
13+
```

0 commit comments

Comments
 (0)