logstash-input-http icon indicating copy to clipboard operation
logstash-input-http copied to clipboard

SSL Client certificate verification not working

Open dorb4r opened this issue 5 years ago • 0 comments

Here is my configuration:

input {
http {}
http {
        port => 8443
        ssl => true
        ssl_certificate_authorities => ["/ssl/__example_com.ca-bundle"]
        ssl_certificate => "/ssl/__example_com.crt"
        ssl_key => "/ssl/example_com.key"
        ssl_verify_mode => "force_peer"
}
}
output {
        stdout {}
}

This Certificate is a wildcard and it works on other sites with Nginx and RabbitMQ.

Why isn't it working?!

dorb4r avatar Nov 25 '19 21:11 dorb4r