mod_http: Soften dependency on mod_http_errors

This allows disabling mod_http_errors by adding it to
moduless_disabled and ensures mod_http loads even if the error pages
aren't as pretty.
This commit is contained in:
Kim Alvefur 2019-11-16 16:39:45 +01:00
parent 5af4eb8be2
commit fd9ccf20d5

View file

@ -7,7 +7,9 @@
--
module:set_global();
pcall(function ()
module:depends("http_errors");
end);
local portmanager = require "core.portmanager";
local moduleapi = require "core.moduleapi";