mod_http_file_share: Allow credentials via CORS (needed for auth token)

This commit is contained in:
Kim Alvefur 2021-02-23 02:56:49 +01:00
parent d65d38846d
commit b01915e81c

View file

@ -432,6 +432,9 @@ module:hook("iq-get/host/urn:xmpp:http:upload:0:request", handle_slot_request);
if not external_base_url then
module:provides("http", {
streaming_uploads = true;
cors = {
credentials = true;
};
route = {
["PUT /*"] = handle_upload;
["GET /*"] = handle_download;