diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2021-10-25 00:20:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-24 17:20:03 +0200 |
commit | c8ce728705c0a5f85e55ed68101938a04f94ffb3 (patch) | |
tree | be9975217462215c4fbc4b8f0e6b9e90f088c223 /config/initializers | |
parent | ec059317fad4fc5f1ed45a72cbae48edafcb586d (diff) |
Support authentication for ElasticSearch (#16890)
* Support authentication for ElasticSearch * Fix chewy auth settings
Diffstat (limited to 'config/initializers')
-rw-r--r-- | config/initializers/chewy.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/initializers/chewy.rb b/config/initializers/chewy.rb index 9fc9b2f1a..820182a21 100644 --- a/config/initializers/chewy.rb +++ b/config/initializers/chewy.rb @@ -1,6 +1,8 @@ enabled = ENV['ES_ENABLED'] == 'true' host = ENV.fetch('ES_HOST') { 'localhost' } port = ENV.fetch('ES_PORT') { 9200 } +user = ENV.fetch('ES_USER') { nil } +password = ENV.fetch('ES_PASS') { nil } fallback_prefix = ENV.fetch('REDIS_NAMESPACE') { nil } prefix = ENV.fetch('ES_PREFIX') { fallback_prefix } @@ -9,6 +11,8 @@ Chewy.settings = { prefix: prefix, enabled: enabled, journal: false, + user: user, + password: password, sidekiq: { queue: 'pull' }, } |