It seems like you're having trouble accessing your local development website over HTTPS. Here's a step-by-step guide to help you generate and install SSL certificates on your local machine.
Prerequisites
Steps
-
Install OpenSSL on your local machine.
-
Extract the Mozilla CA Certificate Bundle.
-
Generate a private key and a certificate signing request (CSR).
openssl req -new -newkey rsa:2048 -nodes -keyout server.key -x509 -days 365 -out server.crtYou'll be prompted to enter details for your certificate. Fill them out as needed.
-
Self-sign the CSR using the Mozilla CA Certificate Bundle.
openssl x509 -req -in server.csr -CA ca-bundle.crt -CAkey ca-bundle.key -CAcreateserial -out server.crt -days 365 -sha256 -
Configure your local development server to use the generated SSL certificate.
The exact steps to do this will depend on the server software you're using (e.g., Apache, Nginx).