[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: mod_jk integration with JBoss for HTTP and HTTPS both

rsn do-not-reply at jboss.com
Sat Sep 6 21:01:49 EDT 2008


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#4174787

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4174787



More information about the jboss-user mailing list