file_no_https_support.sjs (295B)
1 /* Any copyright is dedicated to the Public Domain. 2 * http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 function handleRequest(request, response) { 5 response.setHeader("Cache-Control", "no-cache", false); 6 response.setStatusLine("1.1", 404, "Not Found"); 7 response.write("not found"); 8 }