index.html 588 Bytes
Newer Older
1 2 3
<html>
<head>
  <title>App1 Index</title>
4 5 6
  <style>
    img { height: 40px; }
  </style>
7 8
</head>
<body>
9 10 11 12 13 14 15 16 17 18 19 20 21

  <h1>App1 index page. Served locally from the the proxy server filesystem</h1>

  <p>image that references non-existent local resource. Forwarded to
    the 'real' proxy target:</p>
    <img src="http://cesanta.com/images/logo.png" />

  <p>Google logo via HTTPS (external resource, served by remote host):</p>
  <img src="https://www.google.ie/images/srpr/logo11w.png" />

  <p>Same image via HTTP:</p>
  <img src="http://www.google.ie/images/srpr/logo11w.png" />

22 23
</body>
</html>