This URL: https://slowapi.com
I can't find the insecure content and the Chrome keeps complaining,
Any ideas?
This URL: https://slowapi.com
I can't find the insecure content and the Chrome keeps complaining,
Any ideas?
"Mixed Content" warnings occur when an HTTPS page is asked to load a resource over HTTP.
This is dangerous because the insecure resources are vulnerable to alteration by an active attacker or eavesdropping by a passive attacker, which violates the user's expectation of security for an HTTPS page.
Update the links via adding a meta tag like below
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
Note: This is a hot fix when you update your production from non-ssl to ssl, anyway you have to fix all the links one by one to https.
"Mixed Content" warnings occur when an HTTPS page is asked to load a resource over HTTP.
This is dangerous because the insecure resources are vulnerable to alteration by an active attacker or eavesdropping by a passive attacker, which violates the user's expectation of security for an HTTPS page.
You are trying to access via "http" on a "https" site, its best to use "https" content. You shouldn't access insecure data on a secure channel.
I had this error with an iframe to another website. I changed the src from "https://website.com/folder" to "https://website.com/folder/index.php" and for some reason it works.
If you're using nginx as a reverse proxy, modify the ssl server block to include this line.
server {
listen 443 SSL;
# Proxy settings
add_header 'Content-Security-Policy' 'upgrade-insecure-requests';
}
In my case, the blocker was at the path. The path I used it was not allowed by the HTTP server. So, make sure your HTTP server allows the path toward your downloads.
My case. I use Flask with path outside "static" directory. Flask does not allow that by default. Once I put in "static" directory (or I instructed Flask to allow my new path), it worked and the error disappeared without any other action from my side.
I hope it helps those who still have this issue.
© 2022 - 2024 — McMap. All rights reserved.