romansanchez/Calaca

login and password for elasticsearch

edalcin opened this issue · 1 comments

How do I pass the login and password for elastichsearch access?

Thanks in advance.

Eduardo

You would need to modify services.js as add the following:

var client = elasticsearch({ host: CALACA_CONFIGS.url, auth: 'username:password' });

Or pre-fix the connection url in config as:

https://username:password@host:9200