-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

EWD wrote:
> I have a website that is running at http://www.ewd.com. I have also installed
> another web application that is also accessible from
> http://www.edw.com:8080.
> 
> I want to configure apache so users can use the second application at
> app.ewd.com instead of www.edw.com:8080. How can I achieve this?
> 
> Thanks in advance
> Edsger


I would do this with mod_proxy in a reverse proxy configuration.

A good guide to do this can be found here: 
http://www.apachetutor.org/admin/reverseproxies

What you need may be as simple as what I have below. There are details in the 
link above that may prove useful if this
does not work for you.

Enable mod_proxy, and mod_proxy_http and then add this to your apache 
configuration:

<VirtualHost *:80>
        ServerName        app.ewd.com
        ProxyPreserveHost On
        ProxyPass        /       http://www.edw.com:8080/
</VirtualHost>


chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD4DBQFHZsS5tqidmIdniVgRAsSpAJdmyM8HdicnYfs8Q2O3ju6oOgfDAJ9x7RGU
2VjVDKFpnKAYONc/SPfLFg==
=wrGm
-----END PGP SIGNATURE-----

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to