set default binding to undefined
this will result in default behavior in app.listen within server.js
This commit is contained in:
parent
aa9a469bb4
commit
b3cb047d3d
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ var opts = require('nomnom')
|
||||||
})
|
})
|
||||||
.option('bind', {
|
.option('bind', {
|
||||||
abbr: 'b',
|
abbr: 'b',
|
||||||
default: "::",
|
default: undefined,
|
||||||
help: 'Bind address'
|
help: 'Bind address'
|
||||||
})
|
})
|
||||||
.option('port', {
|
.option('port', {
|
||||||
|
|
Loading…
Reference in a new issue