Alex made a drunk copypasta that broke everything lul - var user not defined ... In fact we don't need this debug line 'cause it's already done in redirect() itself

This commit is contained in:
Alexandre Aubin 2020-04-15 01:42:47 +02:00
parent c72454c9d6
commit 09e0fa37aa

View file

@ -75,7 +75,6 @@ then
-- Force portal scheme -- Force portal scheme
if ngx.var.scheme ~= conf["portal_scheme"] then if ngx.var.scheme ~= conf["portal_scheme"] then
logger.debug("Redirecting to "..conf.portal_url.."Cross-domain authentication: "..user.." connected on "..ngx.var.host)
return hlp.redirect(conf.portal_url) return hlp.redirect(conf.portal_url)
end end
@ -243,9 +242,9 @@ local longest_protected_match = hlp.longest_url_path(hlp.get_matches("protected"
local longest_skipped_match = hlp.longest_url_path(hlp.get_matches("skipped")) or "" local longest_skipped_match = hlp.longest_url_path(hlp.get_matches("skipped")) or ""
local longest_unprotected_match = hlp.longest_url_path(hlp.get_matches("unprotected")) or "" local longest_unprotected_match = hlp.longest_url_path(hlp.get_matches("unprotected")) or ""
logger.debug("longest skipped "..longest_skipped_match) logger.debug("Longest skipped : "..longest_skipped_match)
logger.debug("longest unprotected "..longest_unprotected_match) logger.debug("Longest unprotected : "..longest_unprotected_match)
logger.debug("longest protected "..longest_protected_match) logger.debug("Longest protected : "..longest_protected_match)
-- --
-- 4. Skipped URLs -- 4. Skipped URLs