Thursday 9 March 2023

How to configure port and scheme for Micronaut application

Set following properties in application.yml file.

micronaut:
  server:
    port: 12345
  ssl:
    enabled: true
    keyStore:
      path: classpath:server.p12
      password: keyStorePassword
      type: PKCS12

 

Previous                                                    Next                                                    Home

No comments:

Post a Comment