зеркало из https://github.com/mozilla/MozDef.git
28 строки
624 B
JavaScript
28 строки
624 B
JavaScript
/*
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
Copyright (c) 2014 Mozilla Corporation
|
|
|
|
Contributors:
|
|
Jeff Bryner jbryner@mozilla.com
|
|
Anthony Verez averez@mozilla.com
|
|
*/
|
|
|
|
//configuration settings
|
|
|
|
elasticsearch = {
|
|
address: "http://localhost:9200/",
|
|
healthurl: "_cluster/health",
|
|
docstatsurl: "_stats/docs"
|
|
}
|
|
|
|
|
|
mozdef = {
|
|
rootURL: "http://localhost",
|
|
port: "3000",
|
|
rootAPI: "http://localhost:8081",
|
|
kibanaURL: "http://localhost:9090",
|
|
enableBanhammer: false
|
|
}
|