Thursday, September 1, 2022

[SOLVED] How to set up a reverse proxy for Apache on Business-Objects BI 4.1?

Issue

I need to know exactly what to add in the httpd.conf file in order to set up a reverse proxy for Apache on these two links :

http://localhost:8080/BOE

http://localhost:8080/AdminTools

I found some information on this page : http://solveissue.com/note?id=1676146

ProxyPass /BI4/BOE http://localhost:8080/BOE

ProxyPassReverseCookiePath //BI4/BOE

ProxyPass /BI4/AdminTools http://localhost:8080/AdminTools

ProxyPassReverseCookiePath //BI4/AdminTools

But not enough to make it work. I always get this error when starting Apache :

ProxyPassReverseCookiePath takes two or three arguments, Path rewrite rule for proxying cookies

Solution

You are missing a space. It should be:

ProxyPassReverseCookiePath    /    /BI4/BOE

(extra spaces added for clarification)



Answered By - Joe
Answer Checked By - Pedro (WPSolving Volunteer)