logstash-input-http
logstash-input-http copied to clipboard
SSL enabled reports ssl_enabled => false in the logs
This is my config:
input {
http {
port => 8080
ssl_enabled => true
ssl_key => "/etc/logstash/certs/logstash/logstash.pkcs8.key"
ssl_certificate => "/etc/logstash/certs/logstash/logstash.crt"
ssl_certificate_authorities => ["/etc/logstash/certs/ca/ca.crt"]
ssl_client_authentication => required
}
}
This is the start-up log:
Sep 26 16:53:01 file-2 logstash[7717]: [2023-09-26T16:53:01,099][INFO ][logstash.javapipeline ][main] Pipeline started {"pipeline.id"=>"main"}
Sep 26 16:53:01 file-2 logstash[7717]: [2023-09-26T16:53:01,103][INFO ][logstash.inputs.http ][main][4a7501c4d01aacf96cafea534fcafd2c4bdd84a4a49fe92b28275bac53e3662f] Starting http input listener {:address=>"0.0.0.0:8080", :ssl=>"false"}
Sep 26 16:53:01 file-2 logstash[7717]: [2023-09-26T16:53:01,153][INFO ][logstash.agent ] Pipelines running {:count=>1, :running_pipelines=>[:main], :non_running_pipelines=>[]}