changed module config property name
This commit is contained in:
parent
ded53cf45c
commit
8f4a733391
|
@ -39,6 +39,11 @@ function fixRawConfig(config) {
|
|||
mod.id = crypto.randomBytes(4).toString('hex');
|
||||
updated = true;
|
||||
}
|
||||
if (mod.name) {
|
||||
mod.type = mod.type || mod.name;
|
||||
delete mod.name;
|
||||
updated = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
function updateDomains(list) {
|
||||
|
|
|
@ -101,7 +101,7 @@ module.exports.create = function (deps, config) {
|
|||
}
|
||||
var socket = require('dgram').createSocket('udp4');
|
||||
config.dns.modules.forEach(function (mod) {
|
||||
if (mod.name !== 'proxy') {
|
||||
if (mod.type !== 'proxy') {
|
||||
console.warn('found bad DNS module', mod);
|
||||
return;
|
||||
}
|
||||
|
@ -213,7 +213,7 @@ module.exports.create = function (deps, config) {
|
|||
|
||||
addPorts(config.tcp.bind);
|
||||
(config.tcp.modules || []).forEach(function (mod) {
|
||||
if (mod.name === 'forward') {
|
||||
if (mod.type === 'forward') {
|
||||
var forwarder = createTcpForwarder(mod);
|
||||
mod.ports.forEach(function (port) {
|
||||
if (!tcpPortMap[port]) {
|
||||
|
|
|
@ -426,10 +426,10 @@ module.exports.create = function (deps, conf, greenlockMiddleware) {
|
|||
|
||||
var subProm = PromiseA.resolve(false);
|
||||
dom.modules.forEach(function (mod) {
|
||||
if (moduleChecks[mod.name]) {
|
||||
if (moduleChecks[mod.type]) {
|
||||
subProm = subProm.then(function (handled) {
|
||||
if (handled) { return handled; }
|
||||
return moduleChecks[mod.name](mod, conn, opts, headers);
|
||||
return moduleChecks[mod.type](mod, conn, opts, headers);
|
||||
});
|
||||
} else {
|
||||
console.warn('unknown HTTP module under domains', dom.names.join(','), mod);
|
||||
|
@ -447,8 +447,8 @@ module.exports.create = function (deps, conf, greenlockMiddleware) {
|
|||
return false;
|
||||
}
|
||||
|
||||
if (moduleChecks[mod.name]) {
|
||||
return moduleChecks[mod.name](mod, conn, opts, headers);
|
||||
if (moduleChecks[mod.type]) {
|
||||
return moduleChecks[mod.type](mod, conn, opts, headers);
|
||||
}
|
||||
console.warn('unknown HTTP module found', mod);
|
||||
});
|
||||
|
|
|
@ -142,7 +142,7 @@ module.exports.create = function (deps, config, netHandler) {
|
|||
}
|
||||
|
||||
return dom.modules.some(function (mod) {
|
||||
if (mod.name !== 'acme') {
|
||||
if (mod.type !== 'acme') {
|
||||
return false;
|
||||
}
|
||||
complete(mod, dom.names);
|
||||
|
@ -156,7 +156,7 @@ module.exports.create = function (deps, config, netHandler) {
|
|||
|
||||
if (Array.isArray(config.tls.modules)) {
|
||||
handled = config.tls.modules.some(function (mod) {
|
||||
if (mod.name !== 'acme') {
|
||||
if (mod.type !== 'acme') {
|
||||
return false;
|
||||
}
|
||||
if (!nameMatchesDomains(opts.domain, mod.domains)) {
|
||||
|
@ -322,10 +322,10 @@ module.exports.create = function (deps, config, netHandler) {
|
|||
}
|
||||
|
||||
function checkModule(mod) {
|
||||
if (mod.name === 'proxy') {
|
||||
if (mod.type === 'proxy') {
|
||||
return proxy(socket, opts, mod);
|
||||
}
|
||||
if (mod.name !== 'acme') {
|
||||
if (mod.type !== 'acme') {
|
||||
console.error('saw unknown TLS module', mod);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue