Skip to content

Commit 901ca49

Browse files
authoredNov 9, 2019
Merge pull request #557 from epugh/master
fix issue #402 by documenting magic command to generate a SSL certifi…
2 parents a0db8f9 + 975cc4f commit 901ca49

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎README.md

+8
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ http-server --proxy http://localhost:8080?
9292

9393
Note the `?` at the end of the proxy URL. Thanks to [@houston3](https://github.com/houston3) for this clever hack!
9494

95+
## Need a self signed SSL Certificate?
96+
97+
Create the `cert.pem` and `key.pem` via the command:
98+
99+
```
100+
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem
101+
```
102+
95103
# Development
96104

97105
Checkout this repository locally, then:

0 commit comments

Comments
 (0)
Please sign in to comment.