mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 00:25:09 +00:00
49 lines
1.2 KiB
JSON
Executable file
49 lines
1.2 KiB
JSON
Executable file
{
|
|
"name": "test-network-${ORG}",
|
|
"version": "1.0.0",
|
|
"client": {
|
|
"organization": "${ORG}",
|
|
"connection": {
|
|
"timeout": {
|
|
"peer": {
|
|
"endorser": "300"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"organizations": {
|
|
"${ORG}": {
|
|
"mspid": "${ORG}MSP",
|
|
"peers": [
|
|
"peer0.${ORG}.varion.com"
|
|
],
|
|
"certificateAuthorities": [
|
|
"ca.${ORG}.varion.com"
|
|
]
|
|
}
|
|
},
|
|
"peers": {
|
|
"peer0.${ORG}.varion.com": {
|
|
"url": "grpcs://localhost:${P0PORT}",
|
|
"tlsCACerts": {
|
|
"pem": "${PEERPEM}"
|
|
},
|
|
"grpcOptions": {
|
|
"ssl-target-name-override": "peer0.${ORG}.varion.com",
|
|
"hostnameOverride": "peer0.${ORG}.varion.com"
|
|
}
|
|
}
|
|
},
|
|
"certificateAuthorities": {
|
|
"ca.${ORG}.varion.com": {
|
|
"url": "https://localhost:${CAPORT}",
|
|
"caName": "ca-${ORG}",
|
|
"tlsCACerts": {
|
|
"pem": ["${CAPEM}"]
|
|
},
|
|
"httpOptions": {
|
|
"verify": false
|
|
}
|
|
}
|
|
}
|
|
}
|