This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new d433473531 Fix unterminated listing block breaking the website build
(#4380)
d433473531 is described below
commit d433473531e5da59ba94b61c7dcc35889c0a2ea5
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Jan 5 16:36:28 2023 +0100
Fix unterminated listing block breaking the website build (#4380)
---
docs/modules/ROOT/pages/reference/extensions/platform-http.adoc | 5 ++---
extensions/platform-http/runtime/src/main/doc/usage.adoc | 5 ++---
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
b/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
index 25be1753e9..46082f6818 100644
--- a/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
@@ -144,12 +144,11 @@ Platform HTTP component can act as a reverse proxy, in
that case `Exchange.HTTP_
Here's an example of a HTTP proxy that simply redirects the Exchange to the
origin server.
[source,java]
-------------------------------------------------------------------------------------------
+----
from("platform-http:proxy")
.toD("http://"
+ "${headers." + Exchange.HTTP_HOST + "}");
-
--------------------------------------------------------------------------------------
+----
[id="extensions-platform-http-additional-camel-quarkus-configuration"]
diff --git a/extensions/platform-http/runtime/src/main/doc/usage.adoc
b/extensions/platform-http/runtime/src/main/doc/usage.adoc
index f324692afb..019884a1d8 100644
--- a/extensions/platform-http/runtime/src/main/doc/usage.adoc
+++ b/extensions/platform-http/runtime/src/main/doc/usage.adoc
@@ -87,9 +87,8 @@ Platform HTTP component can act as a reverse proxy, in that
case `Exchange.HTTP_
Here's an example of a HTTP proxy that simply redirects the Exchange to the
origin server.
[source,java]
-------------------------------------------------------------------------------------------
+----
from("platform-http:proxy")
.toD("http://"
+ "${headers." + Exchange.HTTP_HOST + "}");
-
--------------------------------------------------------------------------------------
+----