On Wed, 2 Mar 2005 16:12:26 +1030, Lance Semmens <lance.semmens@xxxxxxxxxxxxxxxx> wrote: > Hi, I'm new to apache httpd and I'm trying to configure a reverse proxy. > I'm wanting to proxy requests to a webapp running on tomcat on the same > machine as httpd > I'd like httpd to request a username / password before proxying calls to > tomcat. > I've tried using a <VirtualHost> but the documentation is a bit too techy > for me and I don't really understand what I should be specifying for > DocumentRoot and ServerName. > > Lets assume that > apache is running on http://localhost:8080 > my webapp on tomcat is running on http://localhost:80/my_webapp > i'd like requests to http://localhost:8080/my_webapp to be proxied > to http://localhost:80/my_webapp You shouldn't really need a <VirtualHost> for this. Just ProxyPass /my_webapp http://localhost:80/my_webapp ProxyPassReverse /my_webapp http://localhost:80/my_webapp You will, of course, need to adjust Listen and ServerName to specifiy the 8080 port. Joshua. --------------------------------------------------------------------- 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: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx