Mercurial > prosody-modules
view mod_http_libjs/mod_http_libjs.lua @ 4324:45dcf5d4cd6c
mod_cloud_notify: fix push flooding on delayed acks
Under some circumstances the delayed-ack handling caused a push flood,
this commit prevents this and caps pushes at one push per second only.
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Mon, 11 Jan 2021 22:48:17 +0100 |
parents | de2390d6bbe4 |
children | f0efbb0b0b5b |
line wrap: on
line source
local mime_map = module:shared("/*/http_files/mime").types or { css = "text/css", js = "application/javascript", }; local serve; if not pcall(function () local http_files = require "net.http.files"; serve = http_files.serve; end) then serve = module:depends"http_files".serve; end local libjs_path = module:get_option_string("libjs_path", "/usr/share/javascript"); module:provides("http", { default_path = "/share"; route = { ["GET /*"] = serve({ path = libjs_path, mime_map = mime_map }); } });