DEV Community

Discussion on: Mixed Content: Fetching data from HTTPS and HTTP

Collapse
 
lschultebraucks profile image
Lasse Schultebraucks

Had the same issue today at my Jekyll homepage/blog. I changed the theme and with it the css, but the page was fetching the css over http instead of https so the css was not loaded. Fixed it after declaring that is should be loading over https.

Collapse
 
mittalyashu profile image
Yashu Mittal • Edited

Interesting 🙄, was that CSS file created by you or the jekyll theme caused the error.

Collapse
 
lschultebraucks profile image
Lasse Schultebraucks

It was autogenerated in the build process. I didn't specified the url exactly, just the url.
See here. Had to declare it with // instead of https and then it was loading it correctly.

Thread Thread
 
mittalyashu profile image
Yashu Mittal

I see 😮.

As far I know that url is kinda optional to use in jekyll config.yml.