blob: 40356e317c9427a1f9e400e0e79007c4e49dd7c1 [file] [log] [blame]
msg=[[<html><body>
<p>Exit CivetWeb</p>
</body></html>
]]
mg.write("HTTP/1.0 200 OK\r\n")
mg.write("Connection: close\r\n")
mg.write("Content-Length: " .. #msg .. "\r\n")
mg.write("Content-Type: text/html\r\n")
mg.write("\r\n")
mg.write(msg)
os.exit(0)