This file is indexed.

/usr/share/lua/5.1/xavante/vhostshandler.lua is in xavante 2.3.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
12
13
14
15
-----------------------------------------------------------------------------
-- Xavante virtual hosts handler
--
-- Authors: Javier Guerra
-- Copyright (c) 2006-2007 Kepler Project
--
-- $Id: vhostshandler.lua,v 1.3 2007/08/20 22:20:44 carregal Exp $
-----------------------------------------------------------------------------

return function (vhosts)
         return function (req, res)
                  local h = vhosts [req.headers.host] or vhosts [""]
                  return h (req, res)
                end
       end