I've enabled SSL by adding a stash.crt and stash.key to my stash directory. It is a self signed certificate.
When I try to use the regex parser the logs indicate that the SSL/TLS handshake fails. To fix it, we can add a verify=false as a parameter to the requests.post call. Probably a better fix is to seed this verify param with something from config.yml.
I've enabled SSL by adding a
stash.crtandstash.keyto my stash directory. It is a self signed certificate.When I try to use the regex parser the logs indicate that the SSL/TLS handshake fails. To fix it, we can add a
verify=falseas a parameter to therequests.postcall. Probably a better fix is to seed thisverifyparam with something fromconfig.yml.