1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/mount-origin/index.html
Andy Green d9f982a055 minimal examples: update for CSP best practices
1) update the logos to svg

2) add svg icon for strict security policy where used

3) define new vhost option flag to enforce sending CSP headers
   with the result code

4) add vhost option flag to minimal examples to
   enforce sending CSP where applicable

5) Go through all the affecting examples confirming they
   still work

6) add LWS_RECOMMENDED_MIN_HEADER_SPACE constant (currently
   2048) to clarify when we need a buffer to hold headers...
   with CSP the headers have become potentially a lot
   larger.
2018-11-21 17:03:29 +08:00

30 lines
738 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 http-equiv="Content-Language" content="en"/>
<script src="lws-fts.js"></script>
<link rel="stylesheet" type="text/css" href="lws-fts.css"/>
</head>
<body>
<img src="libwebsockets.org-logo.svg">
<img src="strict-csp.svg"><br>
<div class="searchbg">
<span class="title">The Picture of Dorian Gray</span><br>
<table class="searchtable">
<tr>
<td rowspan='2'><img class='eyeglass'></td>
<td class='searchboxtitle'>Fulltext search<br>
<input type='text' id='lws_fts' class='nonviable'
name='lws_fts' maxlength='80'>
<div class='acomplete' id='acomplete'></div>
</td></tr></table>
<div class='searchresults' id='searchresults'></div>
</div>
</body>
</html>