Skip to content

Cleafy/elasticsearch-http-basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Basic auth for ElasticSearch

This plugin provides an extension of ElasticSearchs HTTP Transport module to enable HTTP Basic authorization.

Installation

Copy elasticsearch-http-basic-<version>.jar to plugins/http-basic. Or use bin/plugin to do so.

Configuration

The plugin is disabled by default. Enabling basic authorization will disable the default HTTP Transport module.

http.basic.enable = true
http.basic.user = "my_username"
http.basic.password = "my_password"

Be aware that the password is stored in plain text.