1 2msg=[[<html><body> 3<p>Exit CivetWeb</p> 4</body></html> 5]] 6 7mg.write("HTTP/1.0 200 OK\r\n") 8mg.write("Connection: close\r\n") 9mg.write("Content-Length: " .. #msg .. "\r\n") 10mg.write("Content-Type: text/html\r\n") 11mg.write("\r\n") 12mg.write(msg) 13 14os.exit(0) 15 16