I am new to Leopard Server. I am wondering the correct way to do use Apache ProxyPass in Leopard. I notice that there are reverse proxy settings in the web service settings for each site but I couldn't figure out how to get it to work the way I want.
Putting this in my httpd.conf file works and does exactly what I want...
Is it possible to duplicate this using the settings for the site? It would be much easier to manage if it is. I just couldn't find a good working example of how to use the reverse proxy settings. Thanks in advance for the help.
Putting this in my httpd.conf file works and does exactly what I want...
Code:
<Location /bob>
order deny,allow
deny from all
allow from all
ProxyPass http://localhost:8080/bob
ProxyPassReverse http://localhost:8080/bob
</Location>
Is it possible to duplicate this using the settings for the site? It would be much easier to manage if it is. I just couldn't find a good working example of how to use the reverse proxy settings. Thanks in advance for the help.