I'd like tomcat to only respond to SSL requests; the port 80 
homepage will just be a link to the secured area.

        The virtual hosts documentation 
<http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/tomcat-apache-howto.html#virtual_hosting>
 
assumes different hosts have different names, but my SSL and non-SSL 
vhosts in httpd.conf have the same name. How do I differentiate? Do I 
have to set the 'main' (insecure) ServerName to something like 
myhost-insecure.domain.dom, and set 'ServerName myhost.domain.dom' 
inside the SSL vhost? Please tell me there's a better way.

        Also, the example of how to configure server.xml shows the 
text from httpd.conf instead; this sounds familiar. Does anyone have 
the right text to go into that box?


                                                Thx,


                                                Chris Pepper
>Next, you need to configure Tomcat's server.xml file.
>Option 2 - Same Tomcat for all Virtual Hosts (server.xml)
>
>[ snip! ]
>
>
># Minimalistic Virtual Host configuration
>
>
><VirtualHost 192.168.0.1>
>ServerName host1
>DocumentRoot /web/host1/html
>ApJServMount /servlet /ROOT
><Directory "/web/host1/html/WEB-INF">
>Options None
>Deny from all
></Directory>
></VirtualHost>
>
><VirtualHost 192.168.0.1>
>ServerName host2
>DocumentRoot /web/host2/html
>ApJServMount /servlet /ROOT
><Directory "/web/host2/html/WEB-INF">
>Options None
>Deny from all
></Directory>
></VirtualHost>
>
>
>[ snip! ]

-- 
Chris Pepper:                   <http://www.reppep.com/~pepper/>
Rockefeller U Computing Services:  <http://www.rockefeller.edu/>
Mac OS X Software:                      <http://www.mosxsw.com/>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to