You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/main/asciidoc/jwt-guide.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,9 @@ secured access to the JAX-RS endpoints.
10
10
[cols="<m,<m,<2",options="header"]
11
11
|===
12
12
|Property Name|Default|Description
13
-
|quarkus.jwt.enabled|true|Determine if the jwt extension is enabled. Enabled by default if you include the smallrye-jwt dependency, so this would be used to disable it.
14
-
|quarkus.jwt.realm-name|Quarkus-JWT|Name to use for security realm.
15
-
|quarkus.jwt.auth-mechanism|MP-JWT|Name to use for authentication mechanism
13
+
|quarkus.smalllrye-jwt.enabled|true|Determine if the jwt extension is enabled. Enabled by default if you include the smallrye-jwt dependency, so this would be used to disable it.
14
+
|quarkus.smalllrye-jwt.realm-name|Quarkus-JWT|Name to use for security realm.
15
+
|quarkus.smalllrye-jwt.auth-mechanism|MP-JWT|Name to use for authentication mechanism
16
16
|mp.jwt.verify.publickey|none|The `mp.jwt.verify.publickey` config property allows the Public Key text itself to be supplied as a string. The Public Key will be parsed from the supplied string in the order defined in section <<Supported Public Key Formats>>.
17
17
|mp.jwt.verify.publickey.location|none|Config property allows for an external or internal location of Public Key to be specified. The value may be a relative path or a URL.
18
18
|mp.jwt.verify.issuer|none|Config property specifies the value of the `iss` (issuer)
@@ -276,8 +276,8 @@ In the <<Configuration>> section we introduce the microprofile-config.properties
<1> We are setting public key location to point to a classpath publicKey.pem resource location. We will add this key in part B, <<Adding a Public Key>>.
283
283
<2> We are setting the issuer to the URL string `https://quarkus.io/using-jwt-rbac`.
0 commit comments