http://localhost:8280/app1/* and http://localhost:8280/app2/* What I want to do is configure Apache so the URL's would look like this:http://app1.foo.bar/* (where * may be nothing, or some path supported by the app)
andhttp://app2.foo.bar/* (where * may be nothing, or some path supported by the app)
The closest thing that works for me are the following URLs: http://app1.foo.bar/app1/* and http://app2.foo.bar/app2/*I'm using mod_jk to to the connection between Apache and Tomcat. My virtual host configurations look something like this:
<VirtualHost *:80> ServerName app1 DocumentRoot ... tomcat web app directory ... RewriteEngine on RewriteRule ^/$ /app1 JkMount /app1 tomcat1 JkMount /app1/* tomcat1 </virtualHost> What am I missing? Any help would be appreciated. Thanks! -- James Howe --------------------------------------------------------------------- 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