Putting an Alias element in the Host solved the problem.
I initially had no Alias elements, then added one using the public IP. Logs indicated that Tomcat could not connect to that IP; changing the IP to the local IP (identical to the IP defined in the name attribute in the Connector) seems to have done the trick.
Thanks, Konstantin for pointing me in the right direction. <Service name="Catalina"> <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" useIPVHosts="true" /> <Connector address="192.168.100.100" port="443" useIPVHosts="true" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/usr/share/tomcat/.keystore" keystorePass="changeit" /> <Connector address="192.168.100.200" port="443" useIPVHosts="true" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/usr/share/tomcat/.anotherkeystore" keystorePass="changeit" /> <Engine name="Catalina" defaultHost="firstdomain.com" > <Realm className="org.apache.catalina.realm.UserDatabaseRealm" debug="5" digest="sha" pathname="conf/tomcat_users.xml" /> <Host name="firstdomain.com" appBase="/home/websites/firstdomain.com/webapps" unpackWARs="true" autoDeploy="true"> <Alias>www.firstdomain.com</Alias> <Alias>192.168.100.100</Alias> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="/home/websites/firstdomain.com/logs" prefix="firstdomain.com_access." suffix=".log" pattern="common" resolveHosts="false"/> </Host> <Host name="seconddomain.com" appBase="/home/websites/seconddomain.com/webapps" unpackWARs="true" autoDeploy="true"> <Alias>www.seconddomain.com</Alias> <Alias>192.168.100.200</Alias> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="/home/websites/seconddomain.com/logs" prefix="seconddomain.com_access." suffix=".log" pattern="common" resolveHosts="false" /> </Host> </Engine> </Service> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org