Skip to content

Commit

Permalink
Fix docs build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
roaksoax committed Sep 27, 2023
1 parent a2c20e9 commit 3e24afb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions docs/static/ls-ls-http.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
HTTP output to HTTP input is an alternative to the Lumberjack output to Beats input approach for Logstash-to-Logstash communication.
This approach relies on the use of <<plugins-outputs-http,http output>> to <<plugins-inputs-http,http input>> plugins.

NOTE: Check out these <<http-considerations,considerations>> before you implement {ls}-to-{ls} using HTTP.

For now, <<plugins-outputs-http,http output>> to <<plugins-inputs-http,http input>> with manual configuration may be the best path forward if these limitations don't apply to your use case.
NOTE: {ls}-to-{ls} using HTTP input/output plugins is now being deprecated in favor of <<ls-to-ls-native>>.

[[overview-http-http]]
==== Configuration overview
Expand Down
4 changes: 2 additions & 2 deletions docs/static/ls-ls-native.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ input {
...
ssl_enabled => true
ssl_key => "server.key.pk8"
ssl_key => "server.pkcs8.key"
ssl_certificate => "server.crt"
ssl_certificate_authorities => "ca.crt"
ssl_client_authentication => required
Expand All @@ -101,7 +101,7 @@ output {
...
ssl_enabled => true
ssl_key => "client.key.pk8"
ssl_key => "client.pkcs8.key"
ssl_certificate => "client.crt"
ssl_certificate_authorities => "ca.crt"
}
Expand Down

0 comments on commit 3e24afb

Please sign in to comment.