mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: More security headers
This commit is contained in:
parent
2cb87c6ffa
commit
af9f7de378
1 changed files with 4 additions and 2 deletions
|
@ -248,10 +248,12 @@ function handle_download(event, path) -- GET /uploads/:slot+filename
|
|||
|
||||
response.headers.cache_control = "max-age=31556952, immutable";
|
||||
response.headers.content_security_policy = "default-src 'none'; frame-ancestors 'none';"
|
||||
response.headers.strict_transport_security = "max-age=31556952";
|
||||
response.headers.x_content_type_options = "nosniff";
|
||||
response.headers.x_frame_options = "DENY"; -- replaced by frame-ancestors in CSP?
|
||||
response.headers.x_xss_protection = "1; mode=block";
|
||||
|
||||
return response:send_file(handle);
|
||||
-- TODO
|
||||
-- Set security headers
|
||||
end
|
||||
|
||||
-- TODO periodic cleanup job
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue