mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Merge pull request #2090 from spenceralger/esvm_dir_config
Set data and logging path config for esvm
This commit is contained in:
commit
9fa6c25123
2 changed files with 8 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -8,4 +8,5 @@ build
|
|||
target
|
||||
.jruby
|
||||
.idea
|
||||
*.iml
|
||||
*.iml
|
||||
esvm
|
|
@ -1,4 +1,6 @@
|
|||
module.exports = function (grunt) {
|
||||
var rel = require('path').join.bind(null, __dirname, '../../');
|
||||
|
||||
return {
|
||||
options: {
|
||||
version: '^1.4',
|
||||
|
@ -6,6 +8,10 @@ module.exports = function (grunt) {
|
|||
'elasticsearch/marvel/latest'
|
||||
],
|
||||
config: {
|
||||
path: {
|
||||
data: rel('esvm/data_dir'),
|
||||
logs: rel('esvm/logs')
|
||||
},
|
||||
network: {
|
||||
host: '127.0.0.1'
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue