mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
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:
commit
76f4f060a9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue