This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f9e469f NIFI-8324 Fix NGINX X-ProxiedEntitiesChain examples in Admin
Guide
f9e469f is described below
commit f9e469ffa21093e6f109f309b0aa8846c642c785
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 b83df9a..29285e6 100644
--- a/nifi-docs/src/main/asciidoc/administration-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/administration-guide.adoc
@@ -3307,7 +3307,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>;
}
}
}
@@ -3432,7 +3432,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>;
}
}
}
@@ -3918,4 +3918,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.