Skip to content

Commit 202d13e

Browse files
authored
Merge pull request #94 from willingc/iss-78
Clarify ip all-interfaces warning
2 parents 3f62293 + c2c6168 commit 202d13e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/configurable-http-proxy

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ var listen = {};
205205
listen.port = parseInt(args.port) || 8000;
206206
if (args.ip === '*') {
207207
// handle ip=* alias for all interfaces
208-
log.warn("Interpreting ip='*' as all-interfaces. Use 0.0.0.0 or ''.");
208+
log.warn("Interpreting ip='*' as all-interfaces. Preferred usage is 0.0.0.0 for all IPv4 or '' for all-interfaces.");
209209
args.ip = '';
210210
}
211211
listen.ip = args.ip;

0 commit comments

Comments
 (0)