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