Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Find examples for entries in the JETTY_BASE/resources/joc/joc.properties configuration file to specify a truststore:

    • Example

      Code Block
      languagetext
      titleExample for joc.properties setting for a truststore in PKCS12 format
      truststore_path = joc.p12
      truststore_type = PKCS12
      truststore_password = secret_store
    • Example

      Code Block
      languagetext
      titleExample for joc.properties setting for a truststore in JKS format with relative location
      truststore_path = ../../joc.jks
      truststore_type = JKS
      truststore_password = secret_store
    • Explanation

      • Specify Specifies the location of the truststore with the truststore_path setting. A location relative to the JETTY_BASE/resources/joc directory can be specified. If a file name only is specified as with joc.p12 then this directory is assumed. Use of a relative path such as ../../joc.p12 locates the truststore file in the JETTY_BASE directory.

...