|
Home > Archive > Open Enterprise Server Webserver > April 2005 > Proxy Redirect - Vhost to another port?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Proxy Redirect - Vhost to another port?
|
|
| Anders 2005-04-26, 7:45 am |
| hi, im running OES (apache 2.049) with iFolder and some VirtualHosts and
HULA mail (netmail).
How do I configure apache to redirect mail.mydomain.com to port 8080? Is
this possible?
Other, how do I configure apache to redirect to hula 8080?
Anders
| |
| Jason Long 2005-04-26, 5:45 pm |
| Anders wrote:
> hi, im running OES (apache 2.049) with iFolder and some VirtualHosts and
> HULA mail (netmail).
>
> How do I configure apache to redirect mail.mydomain.com to port 8080? Is
> this possible?
>
> Other, how do I configure apache to redirect to hula 8080?
>
> Anders
Something like this should work: (assumes the name "mail.mydomain.com"
points to your server)
<VirtualHost *:80>
ServerName "mail.mydomain.com"
Redirect http://mail.mydomain.com:8080/
</VirtualHost>
Jason
|
|
|
|
|