I’m trying to test my DF app with a self signed SSL cert. I added it following the bitnami docs and it appeared to be working for MOST of the REST calls.
However some calls (like registering a new user) cause DF to return an error:
{“error”:{“context”:null,“message”:"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)",“code”:500
I’ve searched every where on how to just tell DF (or maybe PHP) to ignore the self signed cert, but have had no luck.
One interesting thing about this error is that the my POST to the REST API actually succeeds (preprocess script and process run, post-process does not run), despite this error. That seems like a possible security issue.
How can I make DF ignore the self signed cert?