view mod_http_libjs/mod_http_libjs.lua @ 4090:e77122025080

mod_easy_invite: Add a touch of dependency info
author Kim Alvefur <zash@zash.se>
date Thu, 10 Sep 2020 17:54:39 +0200
parents 88a469b285f5
children de2390d6bbe4
line wrap: on
line source

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");

module:provides("http", {
		default_path = "/share";
		route = {
			["GET /*"] = require "net.http.files".serve({ path = libjs_path, mime_map = mime_map });
		}
	});