run behind reverse proxy?

Unimus support forum
Post Reply
seanwg
Posts: 2
Joined: Sun Aug 05, 2018 5:46 pm

Sun Aug 05, 2018 5:49 pm

Hi

Anyone have any config for running unimus behind a reverse proxy?

I'm using apache;

Have this - but doesn't seem to fully work -

ProxyPass /unimus http://172.X.X.15:8085
ProxyPassReverse /unimus http://172.X.X.15:8085

Looking at what its talking.. looks like I also need VAAD also?

ProxyPass /VAAD http://172.X.X.15:8085/VAAD
ProxyPassReverse /VAAD http://172.X.X.15:8085/VAAD

Anyone got any working config for Apache?

Thanks
Sean
User avatar
Tomas
Posts: 1206
Joined: Sat Jun 25, 2016 12:33 pm

Sun Aug 05, 2018 5:57 pm

The issue will be that you are running Unimus on / (root - "http://172.X.X.15:8085/"), but trying to mount it to /unimus ("ProxyPass /unimus").

It should work without any issues if context paths are equal:

Code: Select all

ProxyPass "/" "http://172.X.X.15:8085/"
ProxyPassReverse "/" "http://172.X.X.15:8085/"
As to how to reverse proxy when context paths are different - it will require some configuration in Unimus.
I would have to do some research to find out how.
seanwg
Posts: 2
Joined: Sun Aug 05, 2018 5:46 pm

Sun Aug 05, 2018 9:11 pm

Hmm ok. Is there any setting inside unimus to change the web root etc?

We have a jump box, and I want to hide unimus behind web server etc.
Post Reply