Software /
code /
prosody-modules
File
mod_http_libjs/mod_http_libjs.lua @ 6227:dfdf0bf1e84f
mod_invites_page: Remove compatibility with 0.11
author | Link Mauve <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 09 Apr 2025 19:05:14 +0200 |
parent | 6224:0bd1804baae7 |
line wrap: on
line source
local http_files = require "net.http.files"; local mime_map = module:shared("/*/http_files/mime").types or { css = "text/css", js = "application/javascript", }; local libjs_path = module:get_option_string("libjs_path", "/usr/share/javascript"); do -- sanity check local lfs = require "lfs"; local exists, err = lfs.attributes(libjs_path, "mode"); if exists ~= "directory" then module:log("error", "Problem with 'libjs_path': %s", err or "not a directory"); end end module:provides("http", { default_path = "/share"; route = { ["GET /*"] = http_files.serve({ path = libjs_path, mime_map = mime_map }); } });