Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Enabling HTTPS support

You can request Workbench to operate on any ports you like by updating the following section in your <METTLECI-HOME-DIRECTORY>/config.yml file. This example exposes Workbench over HTTP on port 9090 and over HTTPS on port 9443:

server:
  applicationConnectors:
    - type: http
      port: 9090
    - type: https
      port: 9443
      keyStoreType: PKCS12
      keyStorePath: <path-to-keystore>
      keyStorePassword: <store-password>
      trustStoreType: PKCS12
      trustStorePath: <path-to-keystore>
      trustStorePassword: <store-password>

Replace the <place-holder-text> with appropriate values, including (for HTTPS) those used while creating the Java keystore.

Once you’ve made your changes restart your Workbench service using the Service Manager utility on Windows, or this command on Unix: .

sudo service dm-mettleci-workbench restart

Verify Workbench is up and running on the appropriate ports for HTTP and/or HTTPS by navigating to https://<host-url>:<http-port> and http://<host-url>:<https-port> in your browser, as appropriate.

  • No labels