mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http: Support global HTTP modules
Such modules simply ignore the Host header and always handle the same path.
This commit is contained in:
parent
91c5bd7853
commit
93b55928f6
1 changed files with 16 additions and 5 deletions
|
@ -38,7 +38,11 @@ local function get_http_event(host, app_path, key)
|
|||
if app_path == "/" and path:sub(1,1) == "/" then
|
||||
app_path = "";
|
||||
end
|
||||
return method:upper().." "..host..app_path..path;
|
||||
if host == "*" then
|
||||
return method:upper().." "..app_path..path;
|
||||
else
|
||||
return method:upper().." "..host..app_path..path;
|
||||
end
|
||||
end
|
||||
|
||||
local function get_base_path(host_module, app_name, default_app_path)
|
||||
|
@ -85,7 +89,10 @@ function moduleapi.http_url(module, app_name, default_path)
|
|||
end
|
||||
|
||||
function module.add_host(module)
|
||||
local host = module:get_option_string("http_host", module.host);
|
||||
local host = module.host;
|
||||
if host ~= "*" then
|
||||
host = module:get_option_string("http_host", host);
|
||||
end
|
||||
local apps = {};
|
||||
module.environment.apps = apps;
|
||||
local function http_app_added(event)
|
||||
|
@ -144,12 +151,16 @@ function module.add_host(module)
|
|||
|
||||
module:handle_items("http-provider", http_app_added, http_app_removed);
|
||||
|
||||
server.add_host(host);
|
||||
function module.unload()
|
||||
server.remove_host(host);
|
||||
if host ~= "*" then
|
||||
server.add_host(host);
|
||||
function module.unload()
|
||||
server.remove_host(host);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
module.add_host(module); -- set up handling on global context too
|
||||
|
||||
local trusted_proxies = module:get_option_set("trusted_proxies", { "127.0.0.1", "::1" })._items;
|
||||
|
||||
local function get_ip_from_request(request)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue