Okay, so I know exactly how to do this in a Linux environment, but I'm still trying to learn OS X Server, so I want to figure out the OS X way to do this.
I have an application running it's own webserver on a different port (We'll use 9090 for this example). I want for mydomain.com/application to forward that application's webserver through 80, over that alias.
Now, I know how to manually edit the apache configuration in Ubuntu and do this with the ProxyPass module. You just have to write in a ProxyPass entry with a forward and reverse proxy. How can I do this on OS X Server (I'm running 10.6.3), through the Server Admin.app?
In Ubuntu, I know just to add this to the /etc/apache2/mods-available/proxy.conf, then make a symlink to mods-enabled.
I have an application running it's own webserver on a different port (We'll use 9090 for this example). I want for mydomain.com/application to forward that application's webserver through 80, over that alias.
Now, I know how to manually edit the apache configuration in Ubuntu and do this with the ProxyPass module. You just have to write in a ProxyPass entry with a forward and reverse proxy. How can I do this on OS X Server (I'm running 10.6.3), through the Server Admin.app?
In Ubuntu, I know just to add this to the /etc/apache2/mods-available/proxy.conf, then make a symlink to mods-enabled.
Code:
<Location /application>
ProxyPass http://server:port
ProxyPassReverse http://server:port
</Location>