for benefit of others:
Deepak might have not done apache config to handle https initially. The solution he
applied is (in httpd.conf)
a) create virtual hosts
b) assign port 80 virtual host to the location and mod_jk directives
c) assign port 443 virtual host to the location and mod_jk directives
---example---
<VirtualHost 10.0.0.2:80>
DocumentRoot /web/host2
ServerName
host2.apache.org
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
<VirtualHost 10.0.0.2:443>
DocumentRoot /web/host2
ServerName
host2.apache.org
SSLEngine On
JkMount /*.jsp ajp13
JkMount /servlet/* ajp13
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4174787#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...