How to skip or disable SSL check for browsers in mac os?

Viewed 4954

When we try to access SSL secured URL(or site) for development purpose or some other need it shows following error when browser doesn't find the valid SSL certificate for that particular site which we are accessing.

enter image description here

In WINDOWS OS it displays PROCEED option but in MAC OS it doesn't display this option.

So how to simply skip this SSL check for browsers in MAC OS or in other Operating Systems.

2 Answers

As the information explicitly say: the site uses HSTS. This means the site was visited before and the browser cached the information that the site requests access by HTTPS only and does allow to skip certificate warnings. Thus there is explicitly no simple way around it - by design of HSTS. This is not specific to MacOS.

To work around this you need to make sure that the browser no longer remembers the site as using HSTS. How to do this depends on the specific browser (and not the OS). See here for some instructions, including instructions for Chrome which you seem to use.

Related