Connecting DSS to an ElasticSearch cluster with url_prefix

Options
ChristopheLeb
ChristopheLeb Registered Posts: 2 ✭✭✭
edited July 16 in Setup & Configuration

Hi!

I would like to create a connexion to my ES cluster which is exposed on port 80 behind a reverse proxy with "es" prefix. (So it can be accessed on http://my-domain.com/es).

Below is the code that I would use in Python to create the connection.
How can I configure that in the DSS GUI ? There doesn't seem to have any url_prefix field.

Thank you very much for your help !
Christophe

from elasticsearch import Elasticsearch, helpers

# Connection to ElasticSearch
es = Elasticsearch([{'host': 'my-domain.com', 'port': 80, 'url_prefix': 'es'}])

Answers

Setup Info
    Tags
      Help me…