185 lines
8.0 KiB
YAML
185 lines
8.0 KiB
YAML
name: connection-profile
|
|
|
|
#
|
|
# Any properties with an "x-" prefix will be treated as application-specific, exactly like how naming
|
|
# in HTTP headers or swagger properties work. The SDK will simply ignore these fields and leave
|
|
# them for the applications to process. This is a mechanism for different components of an application
|
|
# to exchange information that are not part of the standard schema described below. In particular,
|
|
# the "x-type" property with the "hlfv1" value example below is used by Hyperledger Composer to
|
|
# determine the type of Fabric networks (v0.6 vs. v1.0) it needs to work with.
|
|
#
|
|
x-type: "hlfv1"
|
|
x-loggingLevel: info
|
|
|
|
#
|
|
# Describe what the target network is/does.
|
|
#
|
|
description: "The network to be in if you want to stay in the global trade business"
|
|
|
|
#
|
|
# Schema version of the content. Used by the SDK to apply the corresponding parsing rules.
|
|
#
|
|
version: 1.2.0
|
|
|
|
#
|
|
# [Optional]. But most apps would have this section so that channel objects can be constructed
|
|
# based on the content below. If an app is creating channels, then it likely will not need this
|
|
# section.
|
|
#
|
|
channels:
|
|
# name of the channel
|
|
mychannel:
|
|
# Required. list of orderers designated by the application to use for transactions on this
|
|
# channel. This list can be a result of access control ("org1" can only access "ordererA"), or
|
|
# operational decisions to share loads from applications among the orderers. The values must
|
|
# be "names" of orgs defined under "organizations/peers"
|
|
orderers:
|
|
- orderer.example.com
|
|
|
|
# Required. list of peers from participating orgs
|
|
peers:
|
|
peer0.org1.example.com:
|
|
# [Optional]. will this peer be sent transaction proposals for endorsement? The peer must
|
|
# have the chaincode installed. The app can also use this property to decide which peers
|
|
# to send the chaincode install request. Default: true
|
|
endorsingPeer: true
|
|
|
|
# [Optional]. will this peer be sent query proposals? The peer must have the chaincode
|
|
# installed. The app can also use this property to decide which peers to send the
|
|
# chaincode install request. Default: true
|
|
chaincodeQuery: true
|
|
|
|
# [Optional]. will this peer be sent query proposals that do not require chaincodes, like
|
|
# queryBlock(), queryTransaction(), etc. Default: true
|
|
ledgerQuery: true
|
|
|
|
# [Optional]. will this peer be the target of the SDK's listener registration? All peers can
|
|
# produce events but the app typically only needs to connect to one to listen to events.
|
|
# Default: true
|
|
eventSource: true
|
|
|
|
peer0.org2.example.com:
|
|
# [Optional]. will this peer be sent transaction proposals for endorsement? The peer must
|
|
# have the chaincode installed. The app can also use this property to decide which peers
|
|
# to send the chaincode install request. Default: true
|
|
endorsingPeer: true
|
|
|
|
# [Optional]. will this peer be sent query proposals? The peer must have the chaincode
|
|
# installed. The app can also use this property to decide which peers to send the
|
|
# chaincode install request. Default: true
|
|
chaincodeQuery: true
|
|
|
|
# [Optional]. will this peer be sent query proposals that do not require chaincodes, like
|
|
# queryBlock(), queryTransaction(), etc. Default: true
|
|
ledgerQuery: true
|
|
|
|
# [Optional]. will this peer be the target of the SDK's listener registration? All peers can
|
|
# produce events but the app typically only needs to connect to one to listen to events.
|
|
# Default: true
|
|
eventSource: true
|
|
|
|
#
|
|
# list of participating organizations in this network
|
|
#
|
|
organizations:
|
|
org1:
|
|
mspid: Org1MSP
|
|
|
|
# This org's MSP store (absolute path or relative to client.cryptoconfig)
|
|
cryptoPath: peerOrganizations/org1.example.com/users/{username}@org1.example.com/msp
|
|
|
|
peers:
|
|
- peer0.org1.example.com
|
|
|
|
# the profile will contain public information about organizations other than the one it belongs to.
|
|
# These are necessary information to make transaction lifecycles work, including MSP IDs and
|
|
# peers with a public URL to send transaction proposals. The file will not contain private
|
|
# information reserved for members of the organization, such as admin key and certificate,
|
|
# fabric-ca registrar enroll ID and secret, etc.
|
|
org2:
|
|
mspid: Org2MSP
|
|
|
|
# This org's MSP store (absolute path or relative to client.cryptoconfig)
|
|
cryptoPath: peerOrganizations/org2.example.com/users/{username}@org2.example.com/msp
|
|
|
|
peers:
|
|
- peer0.org2.example.com
|
|
|
|
# Orderer Org name
|
|
ordererorg:
|
|
# Membership Service Provider ID for this organization
|
|
mspID: "OrdererOrg"
|
|
|
|
# Needed to load users crypto keys and certs for this org (absolute path or relative to global crypto path, DEV mode)
|
|
cryptoPath: ordererOrganizations/example.com/users/{username}@example.com/msp
|
|
|
|
|
|
#
|
|
# List of orderers to send transaction and channel create/update requests to. For the time
|
|
# being only one orderer is needed. If more than one is defined, which one get used by the
|
|
# SDK is implementation specific. Consult each SDK's documentation for its handling of orderers.
|
|
#
|
|
orderers:
|
|
local.orderer.example.com:
|
|
url: orderer.example.com:7050
|
|
|
|
# these are standard properties defined by the gRPC library
|
|
# they will be passed in as-is to gRPC client constructor
|
|
grpcOptions:
|
|
ssl-target-name-override: orderer.example.com
|
|
# These parameters should be set in coordination with the keepalive policy on the server,
|
|
# as incompatible settings can result in closing of connection.
|
|
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
|
|
keep-alive-time: 0s
|
|
keep-alive-timeout: 20s
|
|
keep-alive-permit: false
|
|
fail-fast: false
|
|
# allow-insecure will be taken into consideration if address has no protocol defined, if true then grpc or else grpcs
|
|
allow-insecure: false
|
|
|
|
tlsCACerts:
|
|
# Certificate location absolute path
|
|
path: /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem
|
|
|
|
#
|
|
# List of peers to send various requests to, including endorsement, query
|
|
# and event listener registration.
|
|
#
|
|
peers:
|
|
peer0.org1.example.com:
|
|
# this URL is used to send endorsement and query requests
|
|
url: peer0.org1.example.com:7051
|
|
|
|
grpcOptions:
|
|
ssl-target-name-override: peer0.org1.example.com
|
|
# These parameters should be set in coordination with the keepalive policy on the server,
|
|
# as incompatible settings can result in closing of connection.
|
|
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
|
|
keep-alive-time: 0s
|
|
keep-alive-timeout: 20s
|
|
keep-alive-permit: false
|
|
fail-fast: false
|
|
# allow-insecure will be taken into consideration if address has no protocol defined, if true then grpc or else grpcs
|
|
allow-insecure: false
|
|
|
|
tlsCACerts:
|
|
# Certificate location absolute path
|
|
path: /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem
|
|
|
|
peer0.org2.example.com:
|
|
url: peer0.org2.example.com:7051
|
|
grpcOptions:
|
|
ssl-target-name-override: peer0.org2.example.com
|
|
# These parameters should be set in coordination with the keepalive policy on the server,
|
|
# as incompatible settings can result in closing of connection.
|
|
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
|
|
keep-alive-time: 0s
|
|
keep-alive-timeout: 20s
|
|
keep-alive-permit: false
|
|
fail-fast: false
|
|
# allow-insecure will be taken into consideration if address has no protocol defined, if true then grpc or else grpcs
|
|
allow-insecure: false
|
|
|
|
tlsCACerts:
|
|
path: /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem
|