Advertisement
bzqr2k

elasticsearch.yml

Oct 31st, 2019
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. ---
  2. ## Default Elasticsearch configuration from Elasticsearch base image.
  3. ## https://github.com/elastic/elasticsearch/blob/master/distribution/docker/src/docker/config/elasticsearch.yml
  4. #
  5. cluster.name: "docker-cluster"
  6. network.host: 0.0.0.0
  7.  
  8. ## Use single node discovery in order to disable production mode and avoid bootstrap checks
  9. ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
  10. #
  11. discovery.type: single-node
  12.  
  13. ## X-Pack settings
  14. ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-xpack.html
  15. #
  16. xpack.license.self_generated.type: trial
  17. xpack.security.enabled: true
  18. xpack.monitoring.collection.enabled: true
  19. #xpack.notification.email.account:
  20. # default_account:
  21. # profile: standard
  22. # smtp:
  23. # auth: false
  24. # starttls.enable: false
  25. # host: localhost
  26. # port: 25
  27. # smtp_user: cloud_user
  28. # password: Jxxxxxxxma
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement