Using the rpm's supplied with Suse 9.1 pro I have apache 2.0.49 working fine on port 80, and tomcat 5.0.19 working fine on port 8080.
Using the jk2 connector I can get tomcat to serve applications through apache ok but jsp files do not work.
Setting this in apache's conf allows me to access tomcat's admin pages through apache's port 80:
Code:
<Location "/admin">
JkUriSet worker ajp13:localhost:8009
</Location>
So the setup must be pretty close, and there is no problem with the two communicating,
but when I try to access jsp pages using this in apache's conf I get error 400:
No Host matches server name
Code:
<Location "/*.jsp">
JkUriSet worker ajp13:localhost:8009
</Location>
This is the same regardless of trying to access the page using "localhost", the computer name or it's ip address.
Any ideas would be much appreciated.
Thanks.