Skip to content

Commit

Permalink
fix: typo in curl command
Browse files Browse the repository at this point in the history
Signed-off-by: Russ Savage <[email protected]>
  • Loading branch information
russorat committed Sep 5, 2024
1 parent 9bb4629 commit da2da70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/http/mutual-tls.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Mutual TLS module.
Run `curl` with the following command:

```bash
curl --client client-cert.pem --key client-key.pem https://yourapp.ngrok.app
curl --cert client-cert.pem --key client-key.pem https://yourapp.ngrok.app
```

`curl` has a shortcut to pass a single file if the private key and certificate
Expand Down
2 changes: 1 addition & 1 deletion docs/tls/mutual-tls.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Mutual TLS module.
Run `curl` with the following command:

```bash
curl --client client-cert.pem --key client-key.pem https://yourapp.ngrok.app
curl --cert client-cert.pem --key client-key.pem https://yourapp.ngrok.app
```

`curl` has a shortcut to pass a single file if the private key and certificate
Expand Down

0 comments on commit da2da70

Please sign in to comment.