1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-08-13 12:42:25 +03:00
Files
libhttp/test/error.lua
2014-04-11 22:08:24 +02:00

12 lines
253 B
Lua

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>Lua error handler:</p>
<p>Status code: ]])
mg.write(tostring(mg.request_info.status))
mg.write([[</p>
</body></html>
]])