This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch support/nifi-1.13 in repository https://gitbox.apache.org/repos/asf/nifi.git
commit f0644b7febc339d362bc92cc5536bcf19fbb71ce Author: Joey Frazee <[email protected]> AuthorDate: Mon Mar 15 13:48:50 2021 -0700 NIFI-8324 Fix NGINX X-ProxiedEntitiesChain examples in Admin Guide This closes #4897 Signed-off-by: David Handermann <[email protected]> --- nifi-docs/src/main/asciidoc/administration-guide.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nifi-docs/src/main/asciidoc/administration-guide.adoc b/nifi-docs/src/main/asciidoc/administration-guide.adoc index 5751c57..0096d95 100644 --- a/nifi-docs/src/main/asciidoc/administration-guide.adoc +++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc @@ -3249,7 +3249,7 @@ http { proxy_set_header X-ProxyHost nginx.example.com; proxy_set_header X-ProxyPort 17590; proxy_set_header X-ProxyContextPath /; - proxy_set_header X-ProxiedEntitiesChain $ssl_client_s_dn; + proxy_set_header X-ProxiedEntitiesChain <$ssl_client_s_dn>; } } } @@ -3374,7 +3374,7 @@ http { proxy_set_header X-ProxyHost $1; proxy_set_header X-ProxyPort 443; proxy_set_header X-ProxyContextPath /; - proxy_set_header X-ProxiedEntitiesChain $ssl_client_s_dn; + proxy_set_header X-ProxiedEntitiesChain <$ssl_client_s_dn>; } } } @@ -3860,4 +3860,4 @@ Now, we must place our custom processor nar in the configured directory. The con Ensure that the file has appropriate permissions for the nifi user and group. -Refresh the browser page and the custom processor should now be available when adding a new Processor to your flow. \ No newline at end of file +Refresh the browser page and the custom processor should now be available when adding a new Processor to your flow.
