Lua error handler for all errors

This commit is contained in:
bel 2014-04-11 22:08:24 +02:00
parent 93065f0278
commit b5da6dbcaa

12
test/error.lua Normal file
View File

@ -0,0 +1,12 @@
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>
]])