Comparison

plugins/mod_websocket.lua @ 12444:b33558969b3e 0.12

mod_http (and dependent modules): Make CORS opt-in by default (fixes #1731) The same-origin policy enforced by browsers is a security measure that should only be turned off when it is safe to do so. It is safe to do so in Prosody's default modules, but people may load third-party modules that are unsafe. Therefore we have flipped the default, so that modules must explicitly opt in to having CORS headers added on their requests.
author Matthew Wild <mwild1@gmail.com>
date Mon, 28 Mar 2022 14:53:24 +0100
parent 12263:168970ce8543
child 12894:0598d822614f
comparison
equal deleted inserted replaced
12443:17d87fb2312a 12444:b33558969b3e
353 353
354 module:depends("http"); 354 module:depends("http");
355 module:provides("http", { 355 module:provides("http", {
356 name = "websocket"; 356 name = "websocket";
357 default_path = "xmpp-websocket"; 357 default_path = "xmpp-websocket";
358 cors = {
359 enabled = true;
360 };
358 route = { 361 route = {
359 ["GET"] = handle_request; 362 ["GET"] = handle_request;
360 ["GET /"] = handle_request; 363 ["GET /"] = handle_request;
361 }; 364 };
362 }); 365 });