Initial code import
[msb/apigateway.git] / openresty-ext / src / assembly / resources / openresty / nginx / luaext / conf / msbinit.lua
1 --[[
2
3     Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9             http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16
17 --]]
18
19 local modulename = "msbinit"
20 local _M = {}
21 _M._VERSION = '1.0.0'
22
23 _M.systemConf = {
24         ["defaultport"]      = "10080",
25         ["defaultprefix"]    = "msb:routing",
26         ["enablefullsearch"] = true, --whether test against the custom services after common match processing
27         ["enablerefercheck"] = true, --whether use refer to test against the service names as the last solution
28         ["enableauthcheck"] = true, --whether add custom auth header or not
29         ["useconsultemplate"] = false --whether using consul template or not
30 }
31 _M.redisConf = {
32         ["host"]        = "127.0.0.1",
33         ["port"]        = 6379,
34         ["poolsize"]    = 100,
35         ["idletimeout"] = 90000, 
36         ["timeout"]     = 1000,
37         ["dbid"]        = 0
38 }
39 _M.cacheConf = {
40         ["positive_ttl"]  = 60, --shcache use,in seconds
41         ["negative_ttl"]  = 2,  --shcache use,in seconds
42         ["lru_ttl"]    = 10 --in seconds
43 }
44 return _M