mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-30 21:25:40 +08:00
24 lines
588 B
HTML
24 lines
588 B
HTML
<html>
|
|
<head>
|
|
<title>App1 Index</title>
|
|
<style>
|
|
img { height: 40px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<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" />
|
|
|
|
</body>
|
|
</html>
|