This file is indexed.

/usr/share/doc/lua-wsapi-doc/samples/fastcgi-example.lua is in lua-wsapi-doc 1.6.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#!/usr/bin/env lua

-- Example of script that uses the fastcgi launcher to launch an Orbit application

local fastcgi = require"wsapi.fastcgi"

-- require'ing the application. It should be in your package.path
local app = require"app"

-- Calls the launcher, app.run is the WSAPI run method of the application
fastcgi.run(app.run)