Created
May 28, 2015 13:55
-
-
Save varh1i/6e971d3443453b421f5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Logstash config: | |
input { | |
lumberjack { | |
port => 5044 | |
ssl_certificate => "/pathto/server.crt" | |
ssl_key => "/pathto/server.key" | |
} | |
} | |
Logstash-forwarder config: | |
{ | |
"network": { | |
"servers": ["server:5044"], | |
"ssl certificate": "/pathto/client.crt", | |
"ssl key": "/pathto/client.key", | |
"ssl ca": "/pathto/serverca.pem", | |
"timeout": 15 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment