|
1 | 1 | ---
|
| 2 | +################################################################################ |
| 3 | +# |
| 4 | +# Section: Organizations |
| 5 | +# |
| 6 | +# - This section defines the different organizational identities which will |
| 7 | +# be referenced later in the configuration. |
| 8 | +# |
| 9 | +################################################################################ |
| 10 | +Organizations: |
| 11 | + |
| 12 | + - &defaultOrg |
| 13 | + # DefaultOrg defines the organization which is used in the sampleconfig |
| 14 | + # of the fabric.git development environment |
| 15 | + Name: defaultOrg |
| 16 | + |
| 17 | + # ID to load the MSP definition as |
| 18 | + ID: DEFAULT |
| 19 | + |
| 20 | + # MSPDir is the filesystem path which contains the MSP configuration |
| 21 | + MSPDir: msp/sampleconfig |
| 22 | + |
| 23 | + |
| 24 | + AnchorPeers: |
| 25 | + # AnchorPeers defines the location of peers which can be used |
| 26 | + # for cross org gossip communication. Note, this value is only |
| 27 | + # encoded in the genesis block in the Application section context |
| 28 | + - Host: 127.0.0.1 |
| 29 | + Port: 7051 |
| 30 | + |
2 | 31 | ################################################################################
|
3 | 32 | #
|
4 | 33 | # SECTION: Orderer
|
@@ -40,3 +69,26 @@ Orderer:
|
40 | 69 | Brokers:
|
41 | 70 | - 127.0.0.1:9092
|
42 | 71 |
|
| 72 | + # Organizations is the list of orgs which are defined as participants on |
| 73 | + # the orderer side of the network |
| 74 | + Organizations: |
| 75 | + |
| 76 | + # The default organization as defined in the organization section |
| 77 | + - *defaultOrg |
| 78 | + |
| 79 | +################################################################################ |
| 80 | +# |
| 81 | +# SECTION: Application |
| 82 | +# |
| 83 | +# - This section defines the values to encode into a config transaction or |
| 84 | +# genesis block for application related parameters |
| 85 | +# |
| 86 | +################################################################################ |
| 87 | +Application: |
| 88 | + |
| 89 | + # Organizations is the list of orgs which are defined as participants on |
| 90 | + # the application side of the network |
| 91 | + Organizations: |
| 92 | + |
| 93 | + # The default organization as defined in the organization section |
| 94 | + - *defaultOrg |
0 commit comments