Skip to content
Andrew Dunn edited this page May 25, 2017 · 1 revision

SSL Configuration

The service supports running over HTTPS connections, this is supported out of the box by the Undertow servlet engine and configuration options provided by Spring Boot.

Configuration

The following configuration needs to be applied to the application.yml file:

server:
  ssl:
    key-store: keystore.p12
    key-store-password: password
    key-store-type: PKCS12
    key-alias: alias

In addition you may want to change the port that the application is listening on, this can be done by changing the port setting in the server section of the application.yml e.g.

server:
  port: 1234

Resources

The following are useful resource to help with the configuration of SSL:

Clone this wiki locally