Merge pull request #4703 from spalger/fix/lazyHostOnWindows

[optimize/lazy] windows can't make requests to 0.0.0.0
This commit is contained in:
Jim Unger 2015-08-19 11:22:59 -05:00
commit 76f4f060a9

View file

@ -92,7 +92,7 @@ module.exports = Joi.object({
otherwise: Joi.default(false)
}),
lazyPort: Joi.number().default(5602),
lazyHost: Joi.string().hostname().default('0.0.0.0'),
lazyHost: Joi.string().hostname().default('localhost'),
lazyPrebuild: Joi.boolean().default(false),
lazyProxyTimeout: Joi.number().default(5 * 60000),
unsafeCache: Joi