diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2016-10-09 11:55:10 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2016-10-09 11:55:34 +0800 |
commit | a9dad4aa13e9ab065192f9b8ec957ce13f4c7091 (patch) | |
tree | 7406cc0b7cfd7b7054442c8bcab123bc34b1ed4f | |
parent | 3aa75ff7ef7c8f643b9e8edf0f99232ffc03e7ee (diff) |
fix issue: OCS-100 module cjson not found
Issue-Id: OCS-100
Change-Id: I696a2bff2554a615730ab36fb0b4a3ce67fc2056
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
-rw-r--r-- | msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf index 1ac9aff..e66571f 100644 --- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf +++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf @@ -56,7 +56,8 @@ http { # Lua settings lua_package_path "$prefix/../lualib/?.lua;$prefix/luaext/?.lua;;"; - + lua_package_cpath "$prefix/../lualib/?.so;;"; + lua_shared_dict ceryx 10M; lua_code_cache on; |