# HG changeset patch # User Kim Alvefur # Date 1522002434 -7200 # Node ID faec53f4b31ee5fd3a12f98ce7a712c7d67f54d0 # Parent dfac28504e863cfaa75d94a04466838e2efa41e7 mod_http_upload: Include the current VirtualHost name in greeting to help with debugging diff -r dfac28504e86 -r faec53f4b31e mod_http_upload/mod_http_upload.lua --- a/mod_http_upload/mod_http_upload.lua Fri Mar 23 22:38:46 2018 +0100 +++ b/mod_http_upload/mod_http_upload.lua Sun Mar 25 20:27:14 2018 +0200 @@ -310,7 +310,7 @@ local function serve_hello(event) event.response.headers.content_type = "text/html;charset=utf-8" - return "\n

Hello from mod_"..module.name.."!

\n"; + return "\n

Hello from mod_"..module.name.." on "..module.host.."!

\n"; end module:provides("http", {