Micronaut ACME Configuration Reference

Every documented configuration property of Micronaut ACME, with types, descriptions, and defaults.

Micronaut ACME documentation

15 properties across 1 section

Micronaut Acme Config Properties

Configuration properties for AcmeConfiguration

PropertyTypeDescription
acme.enabledbooleanSets if acme certificate backgroun and setup process is enabled. Default true.
acme.domainsjava.util.ListSets the domain(s) in which to order the certificate for.
acme.tos-agreebooleanSets whether or not you agree to the terms of service.
acme.renew-witinjava.time.DurationSets the duration in which the application will trigger the renew process to get a new certificate.
acme.account-keyjava.lang.StringSets the account key used for authentication.
acme.domain-keyjava.lang.StringSets the key string in which to be used to generate the CSR which will be used to order the certificate from the ACME server.
acme.cert-locationjava.io.FileSets the location to save the certificate on disk to.
acme.acme-serverjava.lang.StringSets the acme server to authenticate and order the certificate from.
acme.challenge-typeAcmeConfiguration$ChallengeTypeSet the challenge type to be used to validate the account.
acme.http-challenge-server-portjava.lang.IntegerSets the port to start the http challenge server on.
acme.timeoutjava.time.DurationSets the timeout for requests made to the acme server.

Configuration properties for AcmeConfiguration$AuthConfiguration

PropertyTypeDescription
acme.auth.pausejava.time.DurationSets duration in which we will pause between ordering attempts. Default {@value DEFAULT_PAUSE_SECONDS} seconds.
acme.auth.refresh-attemptsintSets number of refresh attempts that will be tried while ordering the certificate from the ACME server. Default 10.

Configuration properties for AcmeConfiguration$OrderConfiguration

PropertyTypeDescription
acme.order.pausejava.time.DurationSets duration in which we will pause between ordering attempts. Default {@value DEFAULT_PAUSE_SECONDS} seconds.
acme.order.refresh-attemptsintSets number of refresh attempts that will be tried while ordering the certificate from the ACME server. Default 10.