Removes the default values on socksPort and instances

This commit is contained in:
Zachary Boyd 2018-05-09 22:09:31 -07:00
parent adb27ab9dd
commit c0026c4411
2 changed files with 4 additions and 4 deletions

View file

@ -32,13 +32,13 @@ let argv_config = require('yargs')
}, },
j: { j: {
alias: 'instances', alias: 'instances',
describe: 'Number of instances using the default config [default: 1]', describe: 'Number of instances using the default config',
demand: false demand: false
// ,default: 1 // ,default: 1
}, },
s: { s: {
alias: 'socksPort', alias: 'socksPort',
describe: 'Port the SOCKS5 Proxy server will bind to [default: 9050]', describe: 'Port the SOCKS5 Proxy server will bind to',
demand: false, demand: false,
// ,default: 9050 // ,default: 9050
}, },

View file

@ -4,7 +4,7 @@ temp.track();
module.exports = { module.exports = {
"controlPort": 9077, "controlPort": 9077,
"parentDataDirectory": temp.mkdirSync(), "parentDataDirectory": temp.mkdirSync(),
"socksPort": 9050, "socksPort": null,
"dnsPort": null, "dnsPort": null,
"httpPort": null, "httpPort": null,
"logLevel": "info", "logLevel": "info",
@ -13,7 +13,7 @@ module.exports = {
"Log": "notice stdout", "Log": "notice stdout",
"NewCircuitPeriod": "10" "NewCircuitPeriod": "10"
}, },
"instances": 1, "instances": null,
"dns": { "dns": {
"options": {}, "options": {},
"timeout": null "timeout": null