Hi, I have appwork installed on machine http://appworks.example.com:8080 so i can access gateway http://appworks.dunmore.com:8080/gateway and content http://appworks.example.com:8080/content
I try to use apache reverse proxy or mod rewrite to http://www.example.com/appworks for example, http://appworks.example.com:8080/gateway/ -> http://www.example.com/appworks/gatewayhttp://appworks.example.com:8080/css/ -> http://www.example.com/appworks/csshttp://appworks.example.com:8080/content/ -> http://www.example.com/appworks/content
and so on. Please let me if there is example, we can configure reverse proxy and mod_rewrite.
Thanks, Mark
Hi,
In your Apache config (I assume it is on www.example.com) you need to add following:
ProxyPass /appworks/gateway/ http://appworks.example.com:8080/gateway/
ProxyPassReverse /appworks/gateway/ http://appworks.example.com:8080/gateway/
and so on.
Then you will be able to access gateway using http://appworks.example.com:8080/gateway/
Ugis