mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
configmanager: Allow referencing environment variables in the config as as ENV_<name>
This commit is contained in:
parent
b16c2dac44
commit
55a6e42c64
1 changed files with 5 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
||||||
--
|
--
|
||||||
|
|
||||||
local _G = _G;
|
local _G = _G;
|
||||||
local setmetatable, rawget, rawset, io, error, dofile, type, pairs =
|
local setmetatable, rawget, rawset, io, os, error, dofile, type, pairs =
|
||||||
setmetatable, rawget, rawset, io, error, dofile, type, pairs;
|
setmetatable, rawget, rawset, io, os, error, dofile, type, pairs;
|
||||||
local format, math_max = string.format, math.max;
|
local format, math_max = string.format, math.max;
|
||||||
|
|
||||||
local envload = require"util.envload".envload;
|
local envload = require"util.envload".envload;
|
||||||
|
@ -109,6 +109,9 @@ do
|
||||||
Component = true, component = true,
|
Component = true, component = true,
|
||||||
Include = true, include = true, RunScript = true }, {
|
Include = true, include = true, RunScript = true }, {
|
||||||
__index = function (_, k)
|
__index = function (_, k)
|
||||||
|
if k:match("^ENV_") then
|
||||||
|
return os.getenv(k:sub(5));
|
||||||
|
end
|
||||||
return rawget(_G, k);
|
return rawget(_G, k);
|
||||||
end,
|
end,
|
||||||
__newindex = function (_, k, v)
|
__newindex = function (_, k, v)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue