mod_http_file_share: Allow 'Authorization' header via CORS (thanks kawaii)

Can't find anything saying anything on whether this is needed or not.
kawaii reported that both Chrome and Firefox complained unless the
header was added to the list of allowed headers.
This commit is contained in:
Kim Alvefur 2021-10-20 23:06:07 +02:00
parent 5016e66640
commit aed2ada774

View file

@ -584,6 +584,9 @@ module:provides("http", {
streaming_uploads = true;
cors = {
credentials = true;
headers = {
Authorization = true;
};
};
route = {
["PUT /*"] = handle_upload;