mod_http_file_share: Indicate missing token via WWW-Authenticate header

This commit is contained in:
Kim Alvefur 2021-01-29 15:34:36 +01:00
parent d068be45d5
commit 593c4cd45e

View file

@ -162,6 +162,7 @@ function handle_upload(event, path) -- PUT /upload/:slot
end
if not authz then
module:log("debug", "Missing or malformed Authorization header");
event.response.headers.www_authenticate = "Bearer";
return 403;
end
local authed, upload_info = jwt.verify(secret, authz);