You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by li...@apache.org on 2021/09/26 08:35:41 UTC

[pulsar] branch revert-12152-fix-jwt-prefix-doc created (now 2f96251)

This is an automated email from the ASF dual-hosted git repository.

liuyu pushed a change to branch revert-12152-fix-jwt-prefix-doc
in repository https://gitbox.apache.org/repos/asf/pulsar.git.


      at 2f96251  Revert "[Doc] Add doc for tokenSettingPrefix (#12152)"

This branch includes the following new commits:

     new 2f96251  Revert "[Doc] Add doc for tokenSettingPrefix (#12152)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[pulsar] 01/01: Revert "[Doc] Add doc for tokenSettingPrefix (#12152)"

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

liuyu pushed a commit to branch revert-12152-fix-jwt-prefix-doc
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit 2f962518413344c7175c77ba9ddc336e28875c21
Author: Anonymitaet <50...@users.noreply.github.com>
AuthorDate: Sun Sep 26 16:34:48 2021 +0800

    Revert "[Doc] Add doc for tokenSettingPrefix (#12152)"
    
    This reverts commit 4ad9694ef2bd5e00871e8f353c63b8ae5bf4a015.
---
 site2/docs/reference-configuration.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/site2/docs/reference-configuration.md b/site2/docs/reference-configuration.md
index e914081..13d781d 100644
--- a/site2/docs/reference-configuration.md
+++ b/site2/docs/reference-configuration.md
@@ -218,7 +218,6 @@ brokerServiceCompactionThresholdInBytes|If the estimated backlog size is greater
 |brokerClientTlsCiphers| Specify the tls cipher the internal client will use to negotiate during TLS Handshake. (a comma-separated list of ciphers) e.g.  [TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256]||
 |brokerClientTlsProtocols|Specify the tls protocols the broker will use to negotiate during TLS handshake. (a comma-separated list of protocol names). e.g.  `TLSv1.3`, `TLSv1.2` ||
 |ttlDurationDefaultInSeconds|The default Time to Live (TTL) for namespaces if the TTL is not configured at namespace policies. When the value is set to `0`, TTL is disabled. By default, TTL is disabled. |0|
-|tokenSettingPrefix| Configure the prefix of the token-related settings, such as `tokenSecretKey`, `tokenPublicKey`, `tokenAuthClaim`, `tokenPublicAlg`, `tokenAudienceClaim`, and `tokenAudience`. ||
 |tokenSecretKey| Configure the secret key to be used to validate auth tokens. The key can be specified like: `tokenSecretKey=data:;base64,xxxxxxxxx` or `tokenSecretKey=file:///my/secret.key`.  Note: key file must be DER-encoded.||
 |tokenPublicKey| Configure the public key to be used to validate auth tokens. The key can be specified like: `tokenPublicKey=data:;base64,xxxxxxxxx` or `tokenPublicKey=file:///my/secret.key`.  Note: key file must be DER-encoded.||
 |tokenPublicAlg| Configure the algorithm to be used to validate auth tokens. This can be any of the asymettric algorithms supported by Java JWT (https://github.com/jwtk/jjwt#signature-algorithms-keys) |RS256|