Read more

Let the browser choose the protocol

Deleted user #6
November 05, 2013Software engineer

You should deliver all web content over https. In 2021 browsers are displaying increasingly obtrusive warnings when content is delivered over http.

Use protocol independent URLs whenever possible so that the browser will choose the protocol related to the protocol which the page is delivered with.

Example issues

  • When your page is delivered via https and you provide a youtube video only via http the most browsers (e.g. Firefox, Chrome) won't display the video.
  • When you deliver your youtube video via https://youtu.be/jyElDp98HdI your test which checks that the embeded video is rendered in the view will fail because your test server doesn't use https

Solution

Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

Let your links look like //youtu.be/jyElDp98HdI and you will be fine, server side and test side.

Posted to makandra dev (2013-11-05 17:19)