Skip to content

Commit

Permalink
fix: accidentally renamed config keys
Browse files Browse the repository at this point in the history
  • Loading branch information
nmathew98 committed Jun 3, 2024
1 parent dcbcdd7 commit 588c47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions elasticsearch/config/elasticsearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ xpack.security.enabled: true
## - ssl
xpack.security.transport.ssl.enabled: true
xpack.security.transport.ssl.verification_mode: certificate
xpack.security.transport.ssl.pem: certs/elasticsearch.pem
xpack.security.transport.ssl.key: certs/elasticsearch.pem
xpack.security.transport.ssl.certificate: certs/elasticsearch.pem

## - http
xpack.security.http.ssl.enabled: true
xpack.security.http.ssl.pem: certs/elasticsearch.pem
xpack.security.http.ssl.key: certs/elasticsearch.pem
xpack.security.http.ssl.certificate: certs/elasticsearch.pem
xpack.security.http.ssl.client_authentication: optional

Expand Down
2 changes: 1 addition & 1 deletion kibana/config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ elasticsearch.hosts: [ "${ELASTICSEARCH_HOST_PORT}" ]
# SSL settings
server.ssl.enabled: true
server.ssl.certificate: /certs/kibana.pem
server.ssl.pem: /certs/kibana.pem
server.ssl.key: /certs/kibana.pem
xpack.security.encryptionKey: C1tHnfrlfxSPxPlQ8BlgPB5qMNRtg5V5
xpack.encryptedSavedObjects.encryptionKey: D12GTfrlfxSPxPlGRBlgPB5qM5GOPDV5
xpack.reporting.encryptionKey: RSCueeHKzrqzOVTJhkjt17EMnzM96LlN
Expand Down

0 comments on commit 588c47d

Please sign in to comment.