mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
Add a new setting to redirect unknown URLs to either the SSO portal or a 404 page
This commit is contained in:
parent
fa8be3795e
commit
0b7ab4698b
4 changed files with 18 additions and 4 deletions
|
@ -100,6 +100,12 @@ Whether authentication should use secure connection or not (**default**: `https`
|
|||
|
||||
---------------
|
||||
|
||||
### err404_to_portal
|
||||
|
||||
Wether to redirect unknown URLs to the portal or to a 404 page (**default**: `true`).
|
||||
|
||||
---------------
|
||||
|
||||
### domains
|
||||
|
||||
List of handled domains (**default**: similar to `portal_domain`).
|
||||
|
|
10
access.lua
10
access.lua
|
@ -315,9 +315,15 @@ for permission_name, permission_infos in pairs(conf["permissions"]) do
|
|||
end
|
||||
end
|
||||
|
||||
---
|
||||
--- 5. REDIRECT TO 404 PAGE IF UNKNOWN URL -> PORTAL IS DISABLED
|
||||
---
|
||||
if not conf["err404_to_portal"] and longest_url_match == "" then
|
||||
return ngx.exit(ngx.HTTP_NOT_FOUND)
|
||||
end
|
||||
|
||||
---
|
||||
--- 5. CHECK CLIENT-PROVIDED AUTH HEADER (should almost never happen?)
|
||||
--- 6. CHECK CLIENT-PROVIDED AUTH HEADER (should almost never happen?)
|
||||
---
|
||||
|
||||
if permission ~= nil then
|
||||
|
@ -336,7 +342,7 @@ end
|
|||
|
||||
--
|
||||
--
|
||||
-- 6. APPLY PERMISSION
|
||||
-- 7. APPLY PERMISSION
|
||||
--
|
||||
--
|
||||
|
||||
|
|
|
@ -62,8 +62,9 @@
|
|||
},
|
||||
"portal_domain": "example.tld",
|
||||
"portal_path": "/yunohost/sso/",
|
||||
"err404_to_portal": true,
|
||||
"redirected_regex": {
|
||||
"example.tld/yunohost[\\/]?$": "https://example.tld/yunohost/sso/"
|
||||
},
|
||||
"redirected_urls": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ function get_config()
|
|||
-- If the timestamp of the modification or the size is different, reload the configuration.
|
||||
config_attributes = new_config_attributes
|
||||
config_persistent_attributes = new_config_persistent_attributes
|
||||
|
||||
|
||||
local conf_file = assert(io.open(conf_path, "r"), "Configuration file is missing")
|
||||
conf = json.decode(conf_file:read("*all"))
|
||||
conf_file:close()
|
||||
|
@ -83,6 +83,7 @@ function get_config()
|
|||
default_conf = {
|
||||
portal_scheme = "https",
|
||||
portal_path = "/ssowat/",
|
||||
err404_to_portal = true,
|
||||
local_portal_domain = "yunohost.local",
|
||||
domains = { conf["portal_domain"], "yunohost.local" },
|
||||
session_timeout = 60 * 60 * 24, -- one day
|
||||
|
|
Loading…
Add table
Reference in a new issue