How to see the websites of all my syncthing installations on a single page?

I would like to see the states of my syncthing sites in one single page. Why does the first iframe work, but the others don’t? (“Connection error”) (Is there a place, where your webserver can access my .html-file?)

<!doctype html>
<html lang="de">
  <head>
    <meta charset="utf-8">
	<title>syncthing</title>
	<meta charset="UTF-8" />
	<meta name="description" content="syncthing" />
 
	<link href="style.css" type="text/css" rel="stylesheet" />
 
</head>
 
<body>
<!-- ok -->
<iframe src="http://syncthing.net/" width="100%" height="600"> </iframe> 
<!-- not ok -->
<iframe src="http://192.168.178.23:8080/" width="100%" height="600"></iframe> 
<iframe src="http://192.168.178.28:8080/" width="100%" height="600" ></iframe> 
<iframe src="http://192.168.178.43:8080/" width="100%" height="600" ></iframe> 
 
</body>
</html>

Greetings,

merlinuwe

You’re most likely running into the cross site scripting protection. You don’t say what browser or OS, but I’d start by checking how cookies work in iframes in your browser and debug from there.

Thanks for your response and helpfullness. Here are some more informations:

http://192.168.178.23:8080/ is a FreeNAS 9.2.1.5 with FreeBSD 64bit (Browseraccess from Windows and Galaxy Tab 3 7") http://192.168.178.28:8080/ is a Windows 8.1 32bit with Firefox, Chrome, IE (latest releases) http://192.168.178.43:8080/ is a Windows 7 notebook with Firefox, Chrome, IE (latest releases) http://192.168.178.21:8080/ is a Galaxy Tab 3 7" with Firefox, Chrome, Dolfin (latest releases) And there is a Windows 7 64bit Remote and sometimes by using VPN connection. (I would like to run syncthing on Debian 6 (remote webserver) too, but there seem to be no binaries, yet.) I always use the latest releases of syncthing.

Greetings and thanks for the great software you provide

merlinuwe

Regular linux-amd64 (or linux-386 if it’s a really old box) should work fine on Debian.

By browser etc in this case I meant when viewing your iframe-wrapper-thing. I’m guessing the Windows box. http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer looks like it might be relevant, but it’s pretty old. I suspect you’ll have to debug it on your own. :confused: