From: zhouruiyu Date: Tue, 25 Oct 2016 09:32:46 +0000 (+0800) Subject: Change the login url in the check session lua plugin. X-Git-Tag: release/sun~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=dfe878321f798e2f221224993f1bee440bb53205;p=msb%2Fapigateway.git Change the login url in the check session lua plugin. https://jira.open-o.org/browse/OCS-129 Change-Id: I1c575ee1d1077bddc215c08812bfd1cba4276f1d Signed-off-by: zhouruiyu --- 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..6eafc61 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,12 @@ _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/' }; local function verify_value(value) @@ -104,7 +104,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;