diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-29 15:34:36 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-29 15:34:36 +0100 |
commit | 593c4cd45ec6e9d7aa20e81a57edadb291fec023 (patch) | |
tree | a6787ad681647080bfcc2eec92db7df2b2443044 /plugins | |
parent | d068be45d5380abd94dc41cb315bb2e0c6801e74 (diff) | |
download | prosody-593c4cd45ec6e9d7aa20e81a57edadb291fec023.tar.gz prosody-593c4cd45ec6e9d7aa20e81a57edadb291fec023.zip |
mod_http_file_share: Indicate missing token via WWW-Authenticate header
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_file_share.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index d960e853..65f28345 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -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); |