]> git.proxmox.com Git - ceph.git/blob - ceph/src/civetweb/test/error.lua
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / test / error.lua
1 mg.write("HTTP/1.0 200 OK\r\n")
2 mg.write("Content-Type: text/html\r\n")
3 mg.write("\r\n")
4 mg.write([[<html><body>
5 <p>Lua error handler:</p>
6 <p>Status code: ]])
7
8 mg.write(tostring(mg.request_info.status))
9
10 mg.write([[</p>
11 </body></html>
12 ]])