Is an iframe to an internal http site possible?
See original GitHub issueHi,
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:
- Created 5 years ago
- Comments:5
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@alexellis actually I’m not a contibutor, I have just found this project yesterday
Or even better add this bit of code to line 181 of
carlo.js
then you can do this
carlo.launch({allowInsecureContent: true});