Personal tools
Document Actions

6.3. JBoss

Up one level
General instructions for configuring HTTPS in JBoss

The file to edit in JBoss depends on the version. For JBoss 4.0.2 look in server/default/deploy/jbossweb-tomcat55.sar/server.xml file, but for JBoss 4.2.1.GA you must edit server/default/deploy/jboss-web.deployer/server.xml and add the following section (or uncomment and edit the existing one):

<Connector port="8443" address="${jboss.bind.address}"
    maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
    emptySessionPath="true"
    scheme="https" secure="true" clientAuth="false"
    keystoreFile="/path/to/your/keystore/service-keystore.ks"
    keystorePass="your_keystore_password"
    keystoreType="JKS" SSLEnabled="true"
    sslProtocol="TLS"/>

Then restart JBoss.


Powered by Plone CMS, the Open Source Content Management System