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: website-docs/docs/grpc-proxy/enable-orderers.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
1
+
# Enable GRPC proxy on the orderers
2
2
## Enable GRPC proxy for Fabric Operations Console
3
3
4
4
In order to enable the GRPC Web, needed to connect the peer to the Fabric Operations console, we need to add the `grpcProxy` property with the following attributes:
Copy file name to clipboardExpand all lines: website-docs/docs/grpc-proxy/enable-peers.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
1
+
# Enable GRPC proxy on the peers
2
2
## Enable GRPC proxy for Fabric Operations Console
3
3
4
4
In order to enable the GRPC Web, needed to connect the peer to the Fabric Operations console, we need to add the `grpcProxy` property with the following attributes:
> **Note:** This feature requires HLF Operator version 1.12.0 or later.
7
+
8
+
# Revoking Identity Credentials
9
+
10
+
This guide walks you through the process of revoking identity credentials in a Hyperledger Fabric network managed by HLF Operator. Identity revocation is a critical security operation when credentials are compromised or when users leave your organization.
11
+
12
+
## Before You Begin
13
+
14
+
To revoke credentials, you must have an admin identity with the proper permissions. The following attributes are required:
15
+
16
+
```yaml
17
+
identities:
18
+
- affiliation: ''
19
+
attrs:
20
+
hf.AffiliationMgr: false
21
+
hf.GenCRL: true
22
+
hf.IntermediateCA: false
23
+
hf.Registrar.Attributes: '*'
24
+
hf.Registrar.Roles: '*'
25
+
hf.Registrar.DelegateRoles: '*'
26
+
hf.Revoker: true
27
+
name: ${ADMIN_NAME}
28
+
pass: ${ADMIN_PASSWORD}
29
+
type: admin
30
+
```
31
+
32
+
The critical attributes for revocation are:
33
+
- `hf.GenCRL: true` - Allows generation of Certificate Revocation Lists
34
+
- `hf.Revoker: true` - Grants permission to revoke certificates
35
+
- `hf.Registrar.Roles: '*'` - Manages roles for the CA
36
+
37
+
## Step-by-Step Revocation Process
38
+
39
+
### 1. Configure Environment Variables
40
+
41
+
First, set up your environment to connect to the Certificate Authority:
0 commit comments