Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
Setting the following is now working fine (not sure if it was 127.0.0.1 or my web cashe playing jokes to me): ProxyRequests Off ProxyPreserveHost On ProxyPass /iforms/ http://localhost:8443/app/ ProxyPassReverse /iforms/

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
CORRECTION On Thu, Dec 19, 2019 at 6:09 PM Alex K wrote: > Hi, > > On Thu, Dec 19, 2019 at 5:43 PM Eric Covener wrote: > >> > ProxyRequests Off >> > ProxyPreserveHost On >> > ProxyPass /var/www/myapp/ http://127.0.0.1:8443/ >> >

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
Hi, On Thu, Dec 19, 2019 at 5:43 PM Eric Covener wrote: > > ProxyRequests Off > > ProxyPreserveHost On > > ProxyPass /var/www/myapp/ http://127.0.0.1:8443/ > > ProxyPassReverse /var/www/myapp/ http://localhost:8443/ > > The first

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Eric Covener
> ProxyRequests Off > ProxyPreserveHost On > ProxyPass /var/www/myapp/ http://127.0.0.1:8443/ > ProxyPassReverse /var/www/myapp/ http://localhost:8443/ The first parameter is a URL prefix, not a filesystem path.

[users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
Hi all, I have apache 2.4 servicing some php code. Apache is configured to service HTTPs pages. I have also a tomcat app which can be accessed at http://server_ip:8443/app. I need to be able to access the tomcat app within the main GUI which is build on php and accessed with HTTPs. I've tried