mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Indicate missing token via WWW-Authenticate header
This commit is contained in:
parent
d068be45d5
commit
593c4cd45e
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue