mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
[enh] Force HTTPS when set authentication headers (closes #3)
This commit is contained in:
parent
9bd01e9fb9
commit
78828028d3
1 changed files with 3 additions and 0 deletions
|
@ -200,6 +200,9 @@ function authenticate (user, password)
|
|||
end
|
||||
|
||||
function set_headers (user)
|
||||
if ngx.var.scheme ~= "https" then
|
||||
return redirect("https://"..ngx.var.http_host..ngx.var.uri)
|
||||
end
|
||||
user = user or ngx.var.cookie_SSOwAuthUser
|
||||
if not cache:get(user.."-password") then
|
||||
flash("info", "Please log in to access to this content")
|
||||
|
|
Loading…
Reference in a new issue