Files
orange-admin/orange-demo-multi-service-for-app/zz-resource/docker-files/services/elasticsearch/elasticsearch.yml
2020-10-29 18:54:21 +08:00

15 lines
445 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 设置支持Elasticsearch-Head
http.cors.enabled: true
http.cors.allow-origin: "*"
# 设置集群Master配置信息
cluster.name: "docker-cluster-master"
# 设置网络如果是本机的话就是127.0.0.1其他服务器配置对应的IP地址即可(0.0.0.0支持外网访问)
network.host: 0.0.0.0
# 密码验证
# xpack.security.enabled: true
# xpack.security.transport.ssl.enabled: true
# 单节点模式
discovery.type: single-node