knight writes:
Timothy,
Without going into too much detail, you are going to want to set up a virtual host in apache for the hostname www.isd197.k12.mn.us, and inside that virtual host you will want to add your ProxyPass lines similar to my example:
[...] And just for reference, here's another working example with ProxyPass: NameVirtualHost 172.17.10.13 <VirtualHost 172.17.10.13> ServerName syslog.integritysi.com ServerAdmin geoff@integritysi.com ProxyPass / http://vishnu.integritysi.com:8080/syslog/ ProxyPassReverse / http://vishnu.integritysi.com:8080/syslog/ ProxyPass /misc_ http://vishnu.integritysi.com:8080/misc_ ProxyPass /p_ http://vishnu.integritysi.com:8080/p_ ErrorLog logs/syslog.integritysi.com TransferLog logs/syslog.integritysi.com </VirtualHost> Good luck, and don't forget to enable the ProxyPass module. //glw