Add very simple test page (created by Lua)

This commit is contained in:
bel2125 2017-01-02 22:23:09 +01:00
parent 85f9d7d409
commit f030c1c71e

8
test/page5.lua Normal file
View File

@ -0,0 +1,8 @@
mg.write("HTTP/1.0 200 OK\r\n")
mg.write("Content-Type: text/html\r\n")
mg.write("\r\n")
mg.write([[<html><body><p>
Hello world!
</p>
</body></html>
]])