mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Make sure we have we configure the ssl_certificate_authorities
and set the verify mode to force_peer to make sure the input uses it.
Fixes #6185 Fixes #6192
This commit is contained in:
parent
ad91ed9706
commit
b566b0db55
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ config:
|
|||
port => 5044
|
||||
ssl_certificate => '<%=options[:ssl_certificate]%>'
|
||||
ssl_key => '<%=options[:ssl_key]%>'
|
||||
ssl_verify_mode => "peer"
|
||||
ssl_verify_mode => "force_peer"
|
||||
ssl_certificate_authorities => '<%=options[:ssl_certificate]%>'
|
||||
}
|
||||
}
|
||||
output {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue