Reputation: 4941
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
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
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.
Upvotes: 4