diff --git a/notes.md b/notes.md index 812df12..b9c89ef 100644 --- a/notes.md +++ b/notes.md @@ -75,6 +75,16 @@ TODOs or using the included `findtodo.sh`. +SSL +--- + + $ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout selfsigned.key -out selfsigned.crt + ... + Common Name (e.g. server FQDN or YOUR name) []: localhost + ... + $ plackup --enable-ssl --ssl-key-file=selfsigned.key --ssl-cert-file=selfsigned.crt web/webperl.psgi + # then go to https://localhost:5000 and accept the certificate warning + Possible Improvements ---------------------