You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
## |
|
## opensearch.yml -- OpenSearch Configuration |
|
## |
|
|
|
path.data: @l_prefix@/var/opensearch/db |
|
path.logs: @l_prefix@/var/opensearch/log |
|
|
|
node.name: opensearch.example.com |
|
network.bind_host: 127.0.0.1 |
|
network.publish_host: 127.0.0.1 |
|
network.host: 127.0.0.1 |
|
transport.tcp.port: 9300 |
|
http.port: 9200 |
|
|
|
http.cors.allow-origin: "http://127.0.0.1:9200" |
|
http.cors.enabled: true |
|
http.cors.allow-headers: X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization |
|
http.cors.allow-credentials: true |
|
|
|
#discovery.zen.ping.multicast.enabled: false |
|
#discovery.zen.ping.unicast.hosts: [ "127.0.0.1:9201", "127.0.0.1:9202" ] |
|
#cluster.name: example-cluster |
|
#node.name: example |
|
#node.master: true |
|
#node.data: true |
|
#index.number_of_shards: 1 |
|
#index.number_of_replicas: 0 |
|
|
|
|