Renarde renarde head Web Framework Config

Configuration Reference

Configuration property fixed at build time - All other configuration properties are overridable at runtime

Configuration property

Type

Default

Specifies the redirect strategy to use. Defaults to cookie.

Environment variable: QUARKUS_RENARDE_AUTH_REDIRECT_TYPE

cookie, query

cookie

Option to control the name of the cookie used to redirect the user back to where he wants to get access to.

Environment variable: QUARKUS_RENARDE_AUTH_REDIRECT_COOKIE

string

quarkus-redirect-location

When true, authentication cookies use quarkus.http.root-path as their path. When false, cookies use "/".

Environment variable: QUARKUS_RENARDE_AUTH_SCOPE_COOKIES_TO_ROOT_PATH

boolean

true

The duration of the JWT token expiration. Defaults to 10 days.

Environment variable: QUARKUS_RENARDE_AUTH_TOKEN_EXPIRATION

Duration 

P10D

This property is deprecated: use Redirect#cookie().

Please do not use and use quarkus.renarde.auth.redirect.cookie instead.

Environment variable: QUARKUS_RENARDE_AUTH_LOCATION_COOKIE

string

${quarkus.renarde.auth.redirect.cookie}

About the Duration format

To write duration values, use the standard java.time.Duration format. See the Duration#parse() Java API documentation for more information.

You can also use a simplified format, starting with a number:

  • If the value is only a number, it represents time in seconds.

  • If the value is a number followed by ms, it represents time in milliseconds.

In other cases, the simplified format is translated to the java.time.Duration format for parsing:

  • If the value is a number followed by h, m, or s, it is prefixed with PT.

  • If the value is a number followed by d, it is prefixed with P.