Skip to main content Skip to complementary content
Close announcements banner

Enable SSL for Nexus 3

Information noteTip: For more information on the Nexus directories, see https://help.sonatype.com/repomanager3/installation-and-upgrades/directories.

Procedure

  1. Copy the keystore file into the $install-dir/etc/ssl folder.
  2. Copy the keystore file into the $install-dir\etc\ssl folder.
  3. Edit the $data-dir/etc/nexus.properties file to add the SSL port and the reference to the SSL configuration file.
    # Jetty section
    application-port=8081
    application-port-ssl=8441
    application-host=0.0.0.0
    nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-https.xml,${jetty.etc}/jetty-requestlog.xml
    nexus-context-path=/
  4. Edit the SSL configuration file $install-dir/etc/jetty/jetty-https.xml for the certificate and password:
    <New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory">
      <Set name="KeyStorePath"><Property name="ssl.etc"/>/keystore.jks</Set>
      <Set name="KeyStorePassword">password</Set>
      <Set name="KeyManagerPassword">password</Set>

    The path must just be the name of the keystore file (preceded by a slash) as the file must be in a specific directory.

  5. Start Nexus and you can login to Nexus URL using SSL port.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!