• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

port redirection isse

 
Ranch Hand
Posts: 182
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using mod_proxy connector for apache-tomcat integration. I have added the following two lines -
ProxyPass / http://ps2047:8080/
ProxyPassReverse / http://ps2047:8080/

in httpd.conf and enabled mod_proxy module. Now all the pages served on tomcat's port 8080 works pretty fine and is mapped to 80 at apache end. But many pages are under security-constraint and they got served on port 8443 on client end also. I want all the response coming from 8443 to 443 at apache.

Brief description of the problem again:
port redirection between 80 <�> 8080 is working fine. But when it comes to SSL, the redirection is working like 80->8443->8443 instead of 80 -> 8443 -> 8443

Any help/pointerrs are welcome
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic