Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ Using this input you can receive events from {esf-name} over http(s) connections

|

[source,subs="+macros,attributes"]
[source]
----
input {
{plugin} {
<<plugins-{type}s-{plugin}-port,port>> => 8080
<<plugins-{type}s-{plugin}-ssl_certificate,ssl_certificate>> => "/path/to/logstash.crt"
<<plugins-{type}s-{plugin}-ssl_key,ssl_key>> => "/path/to/logstash.key"
elastic_serverless_forwarder {
port => 8080
ssl_certificate => "/path/to/logstash.crt"
ssl_key => "/path/to/logstash.key"
}
}
----

|

[source,subs="+macros,attributes"]
[source]
----
input {
elastic_serverless_forwarder {
<<plugins-{type}s-{plugin}-port,port>> => 8080
<<plugins-{type}s-{plugin}-ssl,ssl>> => false
port => 8080
ssl => false
}
}
----
Expand Down