ports/textproc/elasticsearch5/files/patch-config_elasticsearch.yml
Mark Felder 86cfe07013 Update ElasticSearch5 to 5.6.8
Notable changes:

- automate pkg-plists
- Kibana: data dir is now correctly writable by www user

Differential Revision:	https://reviews.freebsd.org/D14474
2018-02-24 14:17:41 +00:00

25 lines
694 B
YAML

--- config/elasticsearch.yml.orig 2018-02-16 16:43:35 UTC
+++ config/elasticsearch.yml
@@ -31,10 +31,15 @@
# Path to directory where to store the data (separate multiple locations by comma):
#
#path.data: /path/to/data
+path.data: /var/db/elasticsearch
#
# Path to log files:
#
#path.logs: /path/to/logs
+path.logs: /var/log/elasticsearch
+#
+# Path to scripts dir:
+path.scripts: /usr/local/libexec/elasticsearch
#
# ----------------------------------- Memory -----------------------------------
#
@@ -86,3 +91,6 @@
# Require explicit names when deleting indices:
#
#action.destructive_requires_name: true
+
+# Required on non-Linux platforms
+bootstrap.system_call_filter: false