Skip to content

Commit

Permalink
docs(examples/cli/https/readme): add an explanation how to generate c…
Browse files Browse the repository at this point in the history
…ertificates in Windows 7 (#1425)
  • Loading branch information
Andreas Opferkuch authored and michael-ciniawsky committed Aug 21, 2018
1 parent df30727 commit 898d52a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions examples/cli/https/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,20 @@ certificate is only good for 30 days, at which point it'll be regenerated.
We highly recommend creating and managing your own certificates. Please see the
following resources for doing so:

* (MacOS) https://certsimple.com/blog/localhost-ssl-fix
* (Windows) https://technet.microsoft.com/itpro/powershell/windows/pkiclient/new-selfsignedcertificate
### MacOS
https://certsimple.com/blog/localhost-ssl-fix

### Windows 10
https://technet.microsoft.com/itpro/powershell/windows/pkiclient/new-selfsignedcertificate

### Windows 7
https://msdn.microsoft.com/en-us/library/aa386968.aspx

Example (the .pfx file generated the following way can be used without `--pfx-passphrase`):
```
makecert -r -pe -sky exchange -sv makecert.pvk makecert.cer
pvk2pfx -pvk makecert.pvk -spc makecert.cer -pfx makecert.pfx
```

## Getting Started

Expand Down

0 comments on commit 898d52a

Please sign in to comment.