...
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:
Code Block | ||
---|---|---|
| ||
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> |
...