Re: [EMAIL PROTECTED] url reformat - howto

2006-05-19 Thread Brian Rectanus
Argh, this was supposed to go to the list, too... From: Brian Rectanus <[EMAIL PROTECTED]> Date: May 19, 2006 9:14 AM Subject: Re: [EMAIL PROTECTED] url reformat - howto To: [EMAIL PROTECTED] Well, that is wrong, too: ProxyPass /mydir http://www.domain.com:8080/mydir/ sho

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-19 Thread Krist van Besien
On 5/19/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: ok this is my whole config... ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www/html ServerName mydomain.com.com ServerAlias www ProxyRequests off ProxyPass /mydir http://www.domain.com:8080/mydir/ ErrorLog log

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Oliver A. Rojo
Brian Rectanus wrote: What you had will strip the mydir off at the backend. ProxyRequests off ProxyPass /mydir/ http://www.mydomain.com:8080/mydir/ -B On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: Krist van Besien wrote: > On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: > >>

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Brian Rectanus
What you had will strip the mydir off at the backend. ProxyRequests off ProxyPass /mydir/ http://www.mydomain.com:8080/mydir/ -B On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: Krist van Besien wrote: > On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: > >> Hi all! >> >> Im running

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Oliver A. Rojo
Krist van Besien wrote: On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: Hi all! Im running Java pages on my server. Basically, all pages will have a direct url like http://mydomain.com:8080/mydir What I did is for user not to type a long url by simply typing the normal domain such as h

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Krist van Besien
On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: Hi all! Im running Java pages on my server. Basically, all pages will have a direct url like http://mydomain.com:8080/mydir What I did is for user not to type a long url by simply typing the normal domain such as http://www.mydomain.com and

Re: [EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Dmitri Colebatch
Hi, What are you running your java servlets on? You want to have a look at something like http://tomcat.apache.org/connectors-doc/ cheers dim On 5/18/06, Oliver A. Rojo <[EMAIL PROTECTED]> wrote: Hi all! Im running Java pages on my server. Basically, all pages will have a direct url like htt

[EMAIL PROTECTED] url reformat - howto

2006-05-18 Thread Oliver A. Rojo
Hi all! Im running Java pages on my server. Basically, all pages will have a direct url like http://mydomain.com:8080/mydir What I did is for user not to type a long url by simply typing the normal domain such as http://www.mydomain.com and redirecting to http://www.mydomain.com:8080/mydir.