24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-16 22:05:29 +02:00

Log error when HTTP request has ambiguous Host header (EJAB-1261)

This commit is contained in:
Badlop 2010-06-16 11:33:17 +02:00
parent e27dda3ff1
commit 8d3fd94d7d

View File

@ -294,6 +294,8 @@ process(LocalPath, Request) ->
{Code, Headers, Contents}
catch
exit:{noproc, _} ->
?ERROR_MSG("Received an HTTP request with Host ~p, but couldn't find the related "
"ejabberd virtual host", [Request#request.host]),
ejabberd_web:error(not_found)
end.