-
Notifications
You must be signed in to change notification settings - Fork 951
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BE-548 Fix for discovery protocol when TLS enabled Change-Id: I6966136454b09a1297f62d6fca07bcbc22e07573 Signed-off-by: nfrunza <nfrunza@gmail.com>
- Loading branch information
Showing
13 changed files
with
3,686 additions
and
4,300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"network-configs": { | ||
"network-1": { | ||
"version": "1.0", | ||
"clients": { | ||
"client-1": { | ||
"tlsEnable": false, | ||
"organization": "Org1MSP", | ||
"channel": "composerchannel", | ||
"credentialStore": { | ||
"path": "./tmp/credentialStore_Org1/credential", | ||
"cryptoStore": { | ||
"path": "./tmp/credentialStore_Org1/crypto" | ||
} | ||
} | ||
} | ||
}, | ||
"channels": { | ||
"composerchannel": { | ||
"peers": { | ||
"peer0.org1.example.com": {} | ||
}, | ||
"connection": { | ||
"timeout": { | ||
"peer": { | ||
"endorser": "6000", | ||
"eventHub": "6000", | ||
"eventReg": "6000" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"organizations": { | ||
"Org1MSP": { | ||
"mspid": "Org1MSP", | ||
"fullpath": false, | ||
"adminPrivateKey": { | ||
"path": "/Composer_Path/fabric-scripts/hlfv12/composer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore" | ||
}, | ||
"signedCert": { | ||
"path": "/Composer_Path/fabric-scripts/hlfv12/composer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts" | ||
} | ||
}, | ||
"OrdererMSP": { | ||
"mspid": "OrdererMSP", | ||
"adminPrivateKey": { | ||
"path": "/Composer_Path/fabric-scripts/hlfv12/composer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore" | ||
} | ||
} | ||
}, | ||
"peers": { | ||
"peer0.org1.example.com": { | ||
"tlsCACerts": { | ||
"path": "/Composer_Path/fabric-scripts/hlfv12/composer/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt" | ||
}, | ||
"url": "grpc://127.0.0.1:7051", | ||
"eventUrl": "grpc://127.0.0.1:7053", | ||
"grpcOptions": { | ||
"ssl-target-name-override": "peer0.org1.example.com" | ||
} | ||
} | ||
}, | ||
"orderers": { | ||
"orderer.example.com": { | ||
"url": "grpc://127.0.0.1:7050" | ||
} | ||
} | ||
}, | ||
"network-2": {} | ||
}, | ||
"configtxgenToolPath": "/home/cadmin/fabric-samples/bin", | ||
"license": "Apache-2.0" | ||
} |
Oops, something went wrong.