@@ -60,12 +60,14 @@ peer:
60
60
61
61
# The endpoint this peer uses to listen for inbound chaincode connections.
62
62
#
63
- # If chaincodeListenAddress is commented out or equals listenAddress, listenAddress will
64
- # be used for chaincode connections. Otherwise a new listener different from peer's listener
65
- # on listenAddress will be used.
63
+ # The chaincode connection does not support TLS-mutual auth. Having a
64
+ # separate listener for the chaincode helps isolate the chaincode
65
+ # environment for enhanced security, so it is strongly recommended to
66
+ # uncomment chaincodeListenAddress and specify a protected endpoint.
66
67
#
67
- # The chaincode connection does not support TLS-mutual auth. Having a separate listener for
68
- # the chaincode environment helps isolate the chaincode enviroment for enhanced security.
68
+ # If chaincodeListenAddress is not configured or equals to the listenAddress,
69
+ # listenAddress will be used for chaincode connections. This is not
70
+ # recommended for production.
69
71
#
70
72
# chaincodeListenAddress: 127.0.0.1:7052
71
73
@@ -167,11 +169,10 @@ peer:
167
169
168
170
# EventHub related configuration
169
171
events :
170
- # The address that the Event service will be enabled on the validator
172
+ # The address that the Event service will be enabled on the peer
171
173
address : 0.0.0.0:7053
172
174
173
- # total number of events that could be buffered without blocking the
174
- # validator sends
175
+ # total number of events that could be buffered without blocking send
175
176
buffersize : 100
176
177
177
178
# timeout duration for producer to send an event.
@@ -181,6 +182,8 @@ peer:
181
182
timeout : 10ms
182
183
183
184
# TLS Settings
185
+ # Note that peer-chaincode connections through chaincodeListenAddress is
186
+ # not mutual TLS auth. See comments on chaincodeListenAddress for more info
184
187
tls :
185
188
enabled : false
186
189
cert :
0 commit comments