Create Your Own SSL Certificate Authority for Local HTTPS Development on a Mac

preview_player
Показать описание
In this video, we’ll walk through creating your own certificate authority on a Mac so that you can run HTTPS sites locally without issue.

#WebDevelopment

00:00 - Introduction
01:31 - Installing Your Root Certificate
01:59 - Certificate via the macOS Keychain App
02:46 - Adding the Certificate to iOS
03:30 - CA-Signed Certificates for Your Dev Sites
05:16 - MAMP Pro v6.0+
05:49 - Conclusion

» USEFUL TOOLS FOR DEVELOPERS

Рекомендации по теме
Комментарии
Автор

Mate, you are so great! I tried to solve this freaking problem for about 18h. I added the certificate to my IOS Device, but didn't went to the certificate settings to trust it.
It is so incredible how you could have solved my problem within like 5 minutes.

I definitely left a subscription to such a great YouTuber!
Love you man!

mktv
Автор

OMG! You solved one of the biggest challenges in web development so elegant!

keviniori
Автор

Please continue on your way, you have no idea how much you are helping us. Thank you

olegnezhnov
Автор

Good video, everything worked perfect to set up my local environment

ernestoballon
Автор

Very nice! what kind of architecture will you propose if we what to implement full-fledged CA ?

atifsamad
Автор

The last step failed for me. Any ideas?

pslamba
Автор

At 2m50s you show emailing the myCA.key to your iOS device. Surely you should keep that one private on the original computer and merely share the .pem file?
Or have I misunderstood what you're proposing here?

nmstoker
Автор

On Latest MacOS: You can create RSA keys up to 4096 bits. RSA keys smaller than 2048 bits are no longer supported.

so instead of > openssl genrsa -des3 -out myCA.key 2048
use > openssl genrsa -des3 -out myCA.key 4096

HabibBinTofajjal