All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vertx.http.runtime.FormAuthConfig.jdp Maven / Gradle / Ivy

#
#Wed Jun 21 11:12:51 CEST 2023
io.quarkus.vertx.http.runtime.FormAuthConfig.enabled=If form authentication is enabled.
io.quarkus.vertx.http.runtime.FormAuthConfig.timeout=The inactivity (idle) timeout\n\nWhen inactivity timeout is reached, cookie is not renewed and a new login is enforced.
io.quarkus.vertx.http.runtime.FormAuthConfig.usernameParameter=The username field name.
io.quarkus.vertx.http.runtime.FormAuthConfig.cookiePath=The cookie path for the session and location cookies.
io.quarkus.vertx.http.runtime.FormAuthConfig.locationCookie=Option to control the name of the cookie used to redirect the user back\nto where he wants to get access to.
io.quarkus.vertx.http.runtime.FormAuthConfig.landingPage=The landing page to redirect to if there is no saved page to redirect back to.\nRedirect to landing page can be disabled by setting `quarkus.http.auth.form.landing-page\=`.
io.quarkus.vertx.http.runtime.FormAuthConfig.newCookieInterval=How old a cookie can get before it will be replaced with a new cookie with an updated timeout, also\nreferred to as "renewal-timeout".\n\nNote that smaller values will result in slightly more server load (as new encrypted cookies will be\ngenerated more often), however larger values affect the inactivity timeout as the timeout is set\nwhen a cookie is generated.\n\nFor example if this is set to 10 minutes, and the inactivity timeout is 30m, if a users last request\nis when the cookie is 9m old then the actual timeout will happen 21m after the last request, as the timeout\nis only refreshed when a new cookie is generated.\n\nIn other words no timeout is tracked on the server side; the timestamp is encoded and encrypted in the cookie itself,\nand it is decrypted and parsed with each request.
io.quarkus.vertx.http.runtime.FormAuthConfig.passwordParameter=The password field name.
io.quarkus.vertx.http.runtime.FormAuthConfig.cookieName=The cookie that is used to store the persistent session
io.quarkus.vertx.http.runtime.FormAuthConfig.redirectAfterLogin=Option to disable redirect to landingPage if there is no saved page to redirect back to. Form Auth POST is followed\nby redirect to landingPage by default.\n\n@deprecated redirect to landingPage can be disabled by removing default landing page\n            (via `quarkus.http.auth.form.landing-page\=`). Quarkus will ignore this configuration property\n            if there is no landing page.
io.quarkus.vertx.http.runtime.FormAuthConfig.postLocation=The post location.
io.quarkus.vertx.http.runtime.FormAuthConfig.httpOnlyCookie=Set the HttpOnly attribute to prevent access to the cookie via JavaScript.
io.quarkus.vertx.http.runtime.FormAuthConfig.loginPage=The login page. Redirect to login page can be disabled by setting `quarkus.http.auth.form.login-page\=`.
io.quarkus.vertx.http.runtime.FormAuthConfig.errorPage=The error page. Redirect to error page can be disabled by setting `quarkus.http.auth.form.error-page\=`.
io.quarkus.vertx.http.runtime.FormAuthConfig.cookieSameSite=SameSite attribute for the session and location cookies.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy