Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-18 Thread solprovider
Where is the login homepage? Where does it POST? Where is the application? What URLs do clients see? How do those URLs reach the correct server/port? How does the application send URLs usable by the client? >From my understanding of your needs, only example.com:80 should be accessible to clients.

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-18 Thread Patrick Coleman
Thanks Nick that might be it. Will let you know. On Oct 18, 2007, at 9:07 AM, Nick Kew wrote: On Thu, 18 Oct 2007 07:32:59 -0400 Patrick Coleman <[EMAIL PROTECTED]> wrote: ..work on the initial screen and the first screen after logging in if I click on any that the 8080 shows up again in the

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-18 Thread Nick Kew
On Thu, 18 Oct 2007 07:32:59 -0400 Patrick Coleman <[EMAIL PROTECTED]> wrote: > ..work on the initial screen and the first screen after logging in > if I click on any that the 8080 shows up again in the URL? > > Is there something else that needs to be added to pick that up each > time? You ma

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-18 Thread Patrick Coleman
I may have spoken a little too soon. While the entries I used .. ProxyPass / http://www.ourcompany.com:8080/ ProxyPassReverse / http://www.ourcompany.com:8080/ ..work on the initial screen and the first screen after logging in if I click on any that the 8080 shows up again in the URL? Is there

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-18 Thread Patrick Coleman
Thanks to Axel-Stephane Robert Jaeschke and solprovider for helping with this. Solprovider suggested running Tomcat on port 80 because nothing is running there and that would be the easiest solution. I didn't want to do that because that might change. The solution Robert suggested worked.

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-17 Thread solprovider
Why not put the homepage/login page on port 80 and proxy the POST to Tomcat? Or are dynamic elements on the login page? If everything will be served by Tomcat, why not run tomcat on port 80? If you are using virtual servers, you should already have configured the proxy. solprovider On 10/17/0

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-17 Thread Robert Jaeschke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Patrick, Patrick Coleman schrieb: > I have a Tomcat app running on port 8080 > > I can get to it through > > http://www.ourcompany.com:8080 > > it goes to a login page and the URL displays > > http://www.ourcompany.com:8080/login > > I woul

RE: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-17 Thread Axel-Stephane SMORGRAV
Could it possibly be this simple?? You probably want to have two virtual hosts, one for port 80 and one for port 8080. In the former, add the following lines: ProxyRequests Off ProxyPass http://www.ourcompany.com/ http://www.ourcompany.com:8080/ ProxyPassReverse http://www.ourcompany.com/ http://