Skip to content

Commit 2ae3aa6

Browse files
committed
Update root config prefix name to smalllrye-jwt
1 parent 577180c commit 2ae3aa6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/src/main/asciidoc/jwt-guide.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ secured access to the JAX-RS endpoints.
1010
[cols="<m,<m,<2",options="header"]
1111
|===
1212
|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
1616
|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>>.
1717
|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.
1818
|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
276276
mp.jwt.verify.publickey.location=publicKey.pem #<1>
277277
mp.jwt.verify.issuer=https://quarkus.io/using-jwt-rbac #<2>
278278
279-
quarkus.jwt.auth-mechanism=MP-JWT # <3>
280-
quarkus.jwt.enabled=true # <4>
279+
quarkus.smalllrye-jwt.auth-mechanism=MP-JWT # <3>
280+
quarkus.smalllrye-jwt.enabled=true # <4>
281281
----
282282
<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>>.
283283
<2> We are setting the issuer to the URL string `https://quarkus.io/using-jwt-rbac`.

0 commit comments

Comments
 (0)