Skip to content

Commit

Permalink
Configure Kibana to access ES over SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Oct 12, 2023
1 parent c3e36e5 commit a87212c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions apps/openchallenges/kibana/.env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
SERVER_NAME='openchallenges-kibana'
ELASTICSEARCH_HOSTS='["http://openchallenges-elasticsearch:9200"]'
SERVER_NAME="openchallenges-kibana"
ELASTICSEARCH_HOSTS='["https://openchallenges-elasticsearch:9200"]'
ELASTICSEARCH_USERNAME="kibana_system"
ELASTICSEARCH_PASSWORD="changeme"
ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES="/usr/share/kibana/config/certs/ca/ca.crt"
3 changes: 2 additions & 1 deletion docker/openchallenges/services/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ services:
ports:
- '8601:5601'
volumes:
- ../../../apps/openchallenges/kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml
# - ../../../apps/openchallenges/kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml
- openchallenges-elasticsearch-certs:/usr/share/kibana/config/certs
- openchallenges-kibana-data:/usr/share/kibana/data
deploy:
resources:
Expand Down

0 comments on commit a87212c

Please sign in to comment.