Remove all search guard
[clamp.git] / src / main / docker / elasticsearch / config / elasticsearch.yml
1 ---
2 ## Default Elasticsearch configuration from elasticsearch-docker.
3 ## from https://github.com/elastic/elasticsearch-docker/blob/master/.tedi/template/elasticsearch.yml
4 #
5 cluster.name: "docker-cluster"
6 network.host: 0.0.0.0
7
8 # minimum_master_nodes need to be explicitly set when bound on a public IP
9 # set to 1 to allow single node clusters
10 # Details: https://github.com/elastic/elasticsearch/pull/17288
11 discovery.zen.minimum_master_nodes: 1
12
13 ## Use single node discovery in order to disable production mode and avoid bootstrap checks
14 ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
15 #
16 discovery.type: single-node
17
18 ## X-Pack settings
19 ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-xpack.html
20 #
21 #xpack.license.self_generated.type: basic
22 #xpack.security.enabled: false