04-26-05 10: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
[ Post a follow-up to this message ]
|