HTTPS requests to API server

Can the dcc-portal-server be configured to service API requests over HTTPS, or is HTTPS handled by a proxy?

Thanks,
Brian K.

Yes it can. We do this for our development environment:

# Server
server:
  ssl:
    keyStore: "/home/ubuntu/dev-certs/letsencrypt.jks"
    keyStorePassword: "mypass"

See here for details:

http://docs.spring.io/spring-boot/docs/current/reference/html/howto-embedded-servlet-containers.html#howto-configure-ssl

Thanks! That gets us further.