Issuing SSL Server Certificates for Local Environment with mkcert
I’ll show you how to issue SSL/TLS server certificates for local environments using mkcert.
I encountered a situation where I needed to use SSL server certificates for web application development on the local environment (localhost), so I issued them using mkcert.
brew install mkcert
Create a certificate authority in the local environment.
mkcert -install
mkcert localhost
mkcert localhost *.localhost example.com *.example.com 127.0.0.1
That’s all from the Gemba.