Hi,
I have successfully deployed a Parse server and an associated dashboard, they work fine when accessed with HTTP.
I have then enabled a SSL certificate on one of the domains associated to my server IP, but when I try requests on the server with HTTPS or accessing the dashboard with https://my_domain:4040
, it doesn’t work. i.e., when I try the curl
to create an object in the DB with http, I get the expected result:
{"objectId":"JvuYIV9BHw","createdAt":"2023-03-06T22:53:47.356Z"}
When I do the same with https, here is what I get in the terminal:
curl: (35) error:1404B42E:SSL routines:ST_CONNECT:tlsv1 alert protocol version
When I try to access the dashboard with https, I get this error: SSL_ERROR_RX_RECORD_TOO_LONG
What should I do to fix this issue?
Thank you for your help