You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-05 07:42:07 +03:00
Added support for redirection and 404 hosts
This commit is contained in:
@@ -45,7 +45,11 @@ const internalNginx = {
|
||||
let filename = internalNginx.getConfigName(host);
|
||||
|
||||
try {
|
||||
template = fs.readFileSync(__dirname + '/../templates/host.conf.ejs', {encoding: 'utf8'});
|
||||
if (typeof host.type === 'undefined' || !host.type) {
|
||||
host.type = 'proxy';
|
||||
}
|
||||
|
||||
template = fs.readFileSync(__dirname + '/../templates/' + host.type + '.conf.ejs', {encoding: 'utf8'});
|
||||
let config_text = ejs.render(template, host);
|
||||
fs.writeFileSync(filename, config_text, {encoding: 'utf8'});
|
||||
resolve(true);
|
||||
|
||||
Reference in New Issue
Block a user