fabric-samples/varion/organizations/ccp-template.json
2024-06-07 18:50:26 +07:00

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
}
}
}
}