Only 2 assets are loaded over HTTP by default:
_static/1507896046/sentry/images/favicon.ico
_static/1507896046/sentry/images/icons/apple-touch-icon.png

Can those be set to https, without having to alter the source?
I have "fixed" it partially now by configuring Nginx to replace all http:// strings to https:// with sub_filter
proxy_set_header Accept-Encoding ""; # no compression allowed or next won't work
sub_filter 'http://' 'https://';
sub_filter_once off;
However the content of assets can still pose a problem. I still get warnings for the automatic ticker for example.
@thomasmoors, thanks a lot man!
This is a problem for me right now. This really should be fixed, especially with browsers cracking down on this nowadays.
@CaptainHypertext it is very likely that your system.url-prefix setting has the http in it. Replacing that with an https version should resolve your issue.
@BYK is right, I forgot to update this topic, but it's just setting I missed an created a way too complex solution
@BYK Yes, it looks like you would be correct, but oddly enough, my url prefix was set to the https url. However the Root URL setting in my admin settings was set to http, and changing that fixed it. Are these the same settings? Does setting it in the app override the configuration?
Thanks
@CaptainHypertext - yes they are the same setting. Normally, when you set this via the config files, it should override the settings in the UI and disable that setting. Not sure what happened in your case.
Probably just me bumbling around with this setup. Thanks again!
Most helpful comment
@CaptainHypertext it is very likely that your
system.url-prefixsetting has thehttpin it. Replacing that with anhttpsversion should resolve your issue.