OpenFire Coding Issue: you have not used relative paths(./) causing HTTP:400 for ProxyPass

Hi ,

I was just going through the codes of Admin Console and found that you

have not used relative paths(./), which is causing HTTP:400 error in

case of ProxyPass mapping.

Like:

If I use:

ProxyPass / http://127.0.0.1:9090/

ProxyPassReverse http://127.0.0.1:9090/

It’s Fine

But, if I use :

ProxyPass /openfire/ http://127.0.0.1:9090/

ProxyPassReverse /openfire/ http://127.0.0.1:9090/

It’s creating HTTP:400 Error when I am trying to browse some link over admin console.

Please ensure that all links are getting stardet with ./

like the Logout link:

Currently: /index.jsp?logout=true
Should be: ./index.jsp?logout=true

Looking Forward for your response.

Thanks & Regards,

Puspendu Banerjee