Shopify / slate

Slate is a toolkit for developing Shopify themes. It's designed to assist your workflow and speed up the process of developing, testing, and deploying themes.
https://shopify.github.io/slate
MIT License
1.28k stars 364 forks source link

New SSL requirements with Mac 10.15 Catalina? My Dev Environment is Busted! #1069

Open mcmanimie opened 4 years ago

mcmanimie commented 4 years ago

Problem

Ever since upgrading to Catalina, I can no longer run my dev environments. All my files receive a NET::ERR_CERT_REVOKED exception upon loading. I wonder if there are different SSL requirements that the old certificates don't satisfy?

Any ideas? I'm super stuck now.

I've always remedied SSL errors by running the recommended ssl-check routine, but it's not getting the job done now.

https://superuser.com/questions/1492207/neterr-cert-revoked-in-chrome-chromium-introduced-with-macos-catalina

Screen Shot 2019-11-01 at 11 21 25 AM

Screen Shot 2019-11-01 at 11 20 49 AM

mcmanimie commented 4 years ago

Problem solved.

You need to do update mkcert. For me, all I had to do is pop this in a terminal: brew upgrade mkcert

jonathanmoore commented 4 years ago

Thank you for that followup @mcmanimie. It was helpful since I was just running into the same issue.

jonathanmoore commented 4 years ago

The solution above did not fully do the trick for me after upgrading. I actually had to go into my ~/.localhost_ssl directory and delete the previously added server.crt and server.key files and then run ssl-check to regenerate they keys.

nemoeric commented 4 years ago

Thanks guys ! Also add to find ~/.localhost_ssl and delete both files !

sam-mcintire commented 4 years ago

Thanks for this, @mcmanimie. Had this problem too and you solved it!