question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is an iframe to an internal http site possible?

See original GitHub issue

Hi,

Is an iframe to an internal http site possible? I would like to link to a development / local site starting http://

I tried this based upon the Terminal example but got an error. Can it be overridden / turned-off?

<html>

<title>Carlo Terminal</title>
<style>
body {
  width: 100%;
  height: 100%;
  /* display: flex; */
  /* flex: auto; */
}
</style>

<body>
  <iframe src="http://host-entry:8080/ui/"></iframe>
</body>
</html>

Mixed Content: The page at ‘https://domain/index.html’ was loaded over HTTPS, but requested an insecure resource ‘http://host-entry:8080/ui/’. This request has been blocked; the content must be served over HTTPS.

Issue Analytics

  • State:open
  • Created 5 years ago
  • Comments:5

github_iconTop GitHub Comments

7reactions
trogpercommented, Nov 1, 2018

@alexellis actually I’m not a contibutor, I have just found this project yesterday

1reaction
trogpercommented, Nov 1, 2018

Or even better add this bit of code to line 181 of carlo.js

  if (options.allowInsecureContent)
    args.push(`--allow-running-insecure-content`);

then you can do this carlo.launch({allowInsecureContent: true});

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to allow http content within an iframe on a https site
The best solution I created is to simply use google as the ssl proxy... Tested and works in firefox.
Read more >
Is it possible to embed any website inside iframes? - Quora
Yes, it is possible to embed a website inside an iframe. An iframe is an HTML element that allows you to embed another...
Read more >
Are there security issues with embedding an HTTPS iframe on ...
If only the iframe is https, the user cannot trivially see the URL it points to. Therefore, the source http page could be...
Read more >
<iframe>: The Inline Frame element - HTML - MDN Web Docs
The <iframe> HTML element represents a nested browsing context, embedding another HTML page into the current one.
Read more >
What is an iFrame: Definition and Example - Hostinger
An iFrame, also knowns as Inline Frame, is an element that loads another HTML element inside of a web page. They are commonly...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found