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: {
alias: 'instances',
describe: 'Number of instances using the default config [default: 1]',
describe: 'Number of instances using the default config',
demand: false
// ,default: 1
},
s: {
alias: 'socksPort',
describe: 'Port the SOCKS5 Proxy server will bind to [default: 9050]',
describe: 'Port the SOCKS5 Proxy server will bind to',
demand: false,
// ,default: 9050
},

View file

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