Mercurial > prosody-modules
view mod_http_libjs/mod_http_libjs.lua @ 6406:cab284eaeb81
mod_auth_oauth_external: Pass on storage error from account info
In case the storage driver has a problem, that problem is reported
instead of "Account not available"
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 18 Feb 2026 16:30:18 +0100 |
| parents | 0bd1804baae7 |
| children |
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 }); } });
