Re: Nifi doesn't work behind reverse proxy

2017-08-07 Thread Matt Gilman
Test 1 is the correct mapping. NiFi is comprised of a number of web applications so you'll need to just map to the root context path and then access the UI at public-ip/pipeline/nifi. The number of web applications is technically unknown until startup as there are defined extension points for

Re: Nifi doesn't work behind reverse proxy

2017-07-19 Thread Matt Gilman
Awesome. Glad you got everything working. I've filed a JIRA for updating the documentation accordingly [1]. Matt [1] https://issues.apache.org/jira/browse/NIFI-4206 On Wed, Jul 19, 2017 at 8:31 AM, Raviteja Lokineni < raviteja.lokin...@gmail.com> wrote: > Hi all, > > This is what I used in

Re: Nifi doesn't work behind reverse proxy

2017-07-19 Thread Raviteja Lokineni
Hi all, This is what I used in httpd/conf.d/nifi.conf to resolve the problem: ProxyPass/ http://:8080/ > ProxyPassReverse / http://:8080/ > RequestHeader add X-ProxyScheme "http" > RequestHeader add X-ProxyHost "" > RequestHeader add X-ProxyPort "80" > RequestHeader add