diff --git a/docs/guides/server/outgoinghttp.adoc b/docs/guides/server/outgoinghttp.adoc index 9b662a0ac99..716fd8790ae 100644 --- a/docs/guides/server/outgoinghttp.adoc +++ b/docs/guides/server/outgoinghttp.adoc @@ -85,7 +85,9 @@ For example, consider the following regex: You apply a regex-based hostname pattern by entering this command: -<@kc.start parameters="--spi-connections-http-client-default-proxy-mappings=\"\'*\\\\\\.(google|googleapis)\\\\\\.com;http://www-proxy.acme.com:8080\'\""/> +<@kc.start parameters="--spi-connections-http-client-default-proxy-mappings=\'.*\\\\.(google|googleapis)\\\\.com;http://www-proxy.acme.com:8080\'"/> + +The backslash character `\` is escaped again because micro-profile config is used to parse the array of mappings. To determine the proxy for the outgoing HTTP request, the following occurs: