I am trying to setup cross cluster search.
My issue is all my ES clusters are behind an nginx proxy with basic auth
I can access the elastic rest endpoint by requesting nginx endpoint:
https://<username>:<password>@<ngix-enpoint>:<ngix-port>
Can I use this endpoint and basic auth to setup cross cluster search?
Current elasticsearch.yml
config:
search:
remote:
cluster_one:
seeds: <ngix-enpoint>:<ngix-port>
cluster_two:
seeds: <ngix-enpoint>:<ngix-port>
Where shall I add auth information? Thank you.