From 54df7bee159a6f2eb0915ca02bb3b7c38fef5183 Mon Sep 17 00:00:00 2001 From: s71221 Date: Sat, 26 Nov 2016 09:43:32 +0800 Subject: merge changes from SUN change the login lua setting's white list. make the login 's dependency ok. OCS-129" target="_blank">https://jira.open-o.org/browse/OCS-129 Change-Id: I25310d4107932a562aff2f0e2e485dd5f2f802ce Signed-off-by: s71221 --- .../resources/openresty/nginx/luaext/plugins/auth.lua | 12 +++++++++--- .../openresty/nginx/luaext/plugins/driver_manager.lua | 4 +++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua index 0bec85c..1572060 100644 --- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua +++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/auth.lua @@ -20,12 +20,18 @@ _M._VERSION = '1.0.0' local auth_url = '/openoapi/auth/v1'; local auth_token_url = auth_url..'/tokens'; local auth_token_key = "X-Auth-Token"; -local redirect_url = "/openoui/auth/v1/login/html/login.html" +local redirect_url = "/openoui/common/login.html" local white_list= { auth_token_url, redirect_url, - '/openoui/auth/v1/login/' + '/openoui/common/css', + '/openoui/common/js', + '/openoui/common/thirdparty', + '/openoui/common/i18n', + '/openoui/common/image', + '/openoui/common/login.html', + '/openoui/common/json' }; local function verify_value(value) @@ -104,7 +110,7 @@ local function get_service_url() proto = "http://"; end --get url - local uri = ngx.var.rui; + local uri = ngx.var.uri; --form complete service url. --local complete_url = proto..host..port..url local complete_url = uri; diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua index fac8a64..45d327d 100644 --- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua +++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/plugins/driver_manager.lua @@ -104,7 +104,9 @@ function _M.access() local actual_body = get_body_params() ngx.log(ngx.ERR, "HTTP request to driver... ", " Request to driver manager") - local res, err = http.new():request_uri(driver_url, { + local httpc = http.new(); + httpc:set_timeout(300000); + local res, err = httpc:request_uri(driver_url, { method = ngx.req.get_method(), body = actual_body, headers = actual_headers -- cgit 1.2.3-korg