Added support for exposeModsInErrorPages config.json property.
This commit is contained in:
parent
fd10bb6409
commit
4e5ab8184d
1 changed files with 4 additions and 1 deletions
5
index.js
5
index.js
|
@ -31,6 +31,8 @@ scgiConf.path = scgiConf.path.replace(/([^\/])\/+$/, "$1");
|
|||
if (scgiConf.host === undefined) scgiConf.host = "localhost";
|
||||
if (scgiConf.port === undefined) scgiConf.port = 4000;
|
||||
|
||||
var disableModExposeSupported = process.versions.svrjs && process.versions.svrjs.match(/^(?:Nightly-|(?:[4-9]|[123][0-9])[0-9]*\.|3\.(?:[1-9][0-9]+\.|9\.(?:[1-9])|4\.(?:(?:[3-9]|[12][0-9])[0-9]+|29)))/i);
|
||||
|
||||
function Mod() {}
|
||||
|
||||
Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, ext, uobject, search, defaultpage, users, page404, head, foot, fd, elseCallback, configJSON, callServerError, getCustomHeaders, origHref, redirect, parsePostData) {
|
||||
|
@ -237,8 +239,9 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
|
|||
req.socket.localPort,
|
||||
getCustomHeaders ?
|
||||
getCustomHeaders()["Server"] +
|
||||
(disableModExposeSupported && (configJSON.exposeModsInErrorPages || configJSON.exposeModsInErrorPages === undefined) ?
|
||||
" OrangeCircle/" +
|
||||
version :
|
||||
version : "") :
|
||||
"SVR.JS/" +
|
||||
configJSON.version +
|
||||
" (" +
|
||||
|
|
Loading…
Reference in a new issue