Hi everyone,
I migrated to nifi-2.3.0 and the usual proxy configuration I used to use
is not working anymore, seems that content viewer route has changed from
"content-viewer" to "standard-content-viewer".
I have tried so far this modifications with no success:
<Location "/nifi-standard-content-viewer-2.3.0">
ProxyPass
"http://localhost:9090/nifi-standard-content-viewer-2.3.0"
ProxyPassReverse
"http://localhost:9090/nifi-standard-content-viewer-2.3.0"
</Location>
<Location "/nifi-standard-content-viewer-2.3.0(.*)">
ProxyPass
"http://localhost:9090/nifi-standard-content-viewer-2.3.0$1"
ProxyPassReverse
"http://localhost:9090/nifi-standard-content-viewer-2.3.0$1"
</Location>
Former Configuration
<Location "/nifi-content-viewer">
ProxyPass "http://localhost:9090/nifi-content-viewer"
ProxyPassReverse
"http://localhost:9090/nifi-content-viewer"
</Location>
Does anyone know how is the correct proxy location configuration in
apache2 for the content viewer ?
Thanks in advance
LC