summaryrefslogtreecommitdiff
path: root/meta/3rd/OpenResty/config.lua
blob: 979dd66078108dcce75109a81660e10c65d48bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
files   = {
  'resty/redis%.lua',
  'lib/resty/.*%.lua',
  'src/resty/.*%.lua',
  'lib/ngx.*/.*%.lua',
  'src/ngx.*/.*%.lua',
}

words = {
  'resty%.%w+',
  'ngx%.%w+',
}

configs = {
    {
        key    = 'Lua.runtime.version',
        action = 'set',
        value  = 'LuaJIT',
    },
    {
        key    = 'Lua.diagnostics.globals',
        action = 'add',
        value  = 'ngx',
    },
}