3 Replies Latest reply on Jul 2, 2003 5:24 AM by juhalindfors

    jboss 3.21 jetty webserver ssl

    aniketvu

      hi,
      I need to find how ssl is configured on jboss-3.2.1 with jetty webserver. if someone cud give me pointers. i searched the forum but ended up getting tomcat specific configuration.

      thanks,
      Aniket

        • 1. Re: jboss 3.21 jetty webserver ssl

          jboss-service.xml in JBossWeb SAR contains a SSL listener (SunJsseListener). You need to generate your asymmetric key pair (SUN keygen tool) in a keystore and reference that keystore from your listener configuration.

          • 2. Re: jboss 3.21 jetty webserver ssl
            maraos

            Hi..

            But when you say get passwords:

            I've run "Sun keytool" and I've obtained a file of certificated..but :

            WHAT VALUE I MUST TO PUT IN "Password" AND "KeyPassword"?

            THE SAME TO SAY:
            WHERE DO I OBTAIN THIS ENCRIPTED VALUES?

            (I'm sorry if my english is poor)

            Thanks..

            maraos@yahoo.com
            Chile
            <!--



            8443
            5
            100
            30000
            2000
            /conf/demokeystore
            OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4
            OBF:1u2u1wml1z7s1z7a1wnl1u2g



            -->

            • 3. Re: jboss 3.21 jetty webserver ssl

              Password contains the password of the keystore. KeyPassword can contain the password of an individual key.

              You don't have to provide obfuscated versions of these passwords (plain text works as well). If however you want to generate obfuscated versions of your passwords then use org.mortbay.util.Password to do it.