Change the login url in the check session lua plugin.
[msb/apigateway.git] / msb-core / openresty-ext / src / assembly / resources / openresty / nginx / luaext / plugins / auth.lua
index 0bec85c..6eafc61 100644 (file)
@@ -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;