update web api to latest

This commit is contained in:
Conor Patrick
2018-09-10 18:22:14 -04:00
parent 2439c4f176
commit 6fff0c353f
3 changed files with 107 additions and 4 deletions

View File

@ -0,0 +1,4 @@
# Run this to make cert you can import in chrome, then run localhost with HTTPS
openssl req -x509 -out localhost.crt -keyout localhost.key -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")