Browse Source

[YQTemplate] add script

main
Annwan 4 months ago
parent
commit
aa646d42e3
  1. 5
      yqtemplate.lua

5
yqtemplate.lua

@ -0,0 +1,5 @@
local fcgi = require"fcgi"
while fcgi.accept() do
fcgi.print("Content-Type: text/plain; charset=utf-8\r\n\r\n")
fcgi.print("Hello from" .. fcgi.getenv("DOCUMENT_URI") .. "\n")
end
Loading…
Cancel
Save