020afc856f
The domain configs are not checked yet, and not used for anything. Based-on-patch-by: lemoer <git@irrelefant.net>
11 lines
339 B
Lua
11 lines
339 B
Lua
local site = os.getenv('GLUON_SITEDIR') .. '/'
|
|
local config = os.getenv('GLUON_SITE_CONFIG')
|
|
|
|
local function loader()
|
|
coroutine.yield('return ')
|
|
coroutine.yield(io.open(site..config):read('*a'))
|
|
end
|
|
|
|
-- setfenv doesn't work with Lua 5.2 anymore, but we're using 5.1
|
|
return setfenv(assert(load(coroutine.wrap(loader), config)), {})()
|