A cli tool to quickly create and manage nginx server blocks. https://up.js.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
923 B

var fs = require('fs-extra');
var shell = require('shelljs');
var EOL = require('os').EOL; // \n if used on Linux, \r\n if used on Windows.
var listFilePath = "/etc/up-serve/servers.up";
function appendToList(domain, outPort, inPort) {
if (!inPort) {
var domBlock = {
domain: {
"type": "static",
"outPort": outPort,
"inPort": undefined
}
}
} else {
var domBlock = {
domain: {
"type": "proxy",
"outPort": outPort,
"inPort": inPort
}
}
}
if (fs.existsSync(listFilePath)) {
var jsonFile = fs.readFileSync(listFilePath);
jsonFile = JSON.parse(jsonFile);
for (block in jsonFile) {
if (block.domain == domain && block.outPort == outPort) {
delete jsonFile.block;
return;
}
}
jsonFile.domain = domBlock.domain;
}
else {
var jsonFile = JSON.stringify(domBlock) + EOL;
}
fs.writeFileSync(listFilePath, jsonFile);
}
module.exports = appendToList;