systemdebt
systemdebt

Reputation: 4941

SSL and google chrome not secure warning

I have recently installed SSL certificate on our web app.

I am using Cloudflare and SSL certificate provided by them and have turned on Always use https mode there. All HTTP links are converted to https.

First screen, login

As I login, it changes to

https://demo.aonesalons.com

and along with https, Google marks it as insecure in the URL.

Even more surprising, I open the same link, the same window in a new tab, chrome does not show it as insecure. I am using angularJS application served by apache server.

What can I possibly change to prevent google chrome from marking this as insecure? Also, I am using service-worker in my application ( That's the reason I installed SSL on the app)

Upvotes: 1

Views: 2120

Answers (1)

clonalejandro
clonalejandro

Reputation: 66

Check If your page contains a request wich require http protocol example html wich contains:
<a href="http://github.com"> Not secure </a>

Fix
<a href="https://github.com"> Secure </a>

How to check
Open Chrome devtools and search window "Network", in this search the urls wich your web load and replace the urls http by https.


Google DevTools

Upvotes: 4

Related Questions