You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A list of origins a cross-domain request can be executed from
146
+
# Default value '[]' disables cors support
147
+
# Use '["*"]' to allow any origin
148
+
cors_allowed_origins = ["*"]
149
+
150
+
# TCP or UNIX socket address for the gRPC server to listen on
151
+
# NOTE: This server only supports /broadcast_tx_commit
152
+
grpc_laddr = ""
153
+
154
+
# Maximum number of simultaneous connections.
155
+
# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
156
+
# If you want to accept a larger number than the default, make sure
157
+
# you increase your OS limits.
158
+
# 0 - unlimited.
159
+
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
160
+
# 1024 - 40 - 10 - 50 = 924 = ~900
161
+
grpc_max_open_connections = 900
162
+
home = ""
163
+
164
+
# TCP or UNIX socket address for the RPC server to listen on
165
+
laddr = "tcp://0.0.0.0:26657"# Please use a reverse proxy!
166
+
167
+
# Maximum size of request body, in bytes
168
+
max_body_bytes = 1000000
169
+
170
+
# Maximum size of request header, in bytes
171
+
max_header_bytes = 1048576
172
+
173
+
# Maximum number of simultaneous connections (including WebSocket).
174
+
# Does not include gRPC connections. See grpc_max_open_connections
175
+
# If you want to accept a larger number than the default, make sure
176
+
# you increase your OS limits.
177
+
# 0 - unlimited.
178
+
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
179
+
# 1024 - 40 - 10 - 50 = 924 = ~900
180
+
max_open_connections = 900
181
+
182
+
# How long to wait for a tx to be committed during /broadcast_tx_commit.
183
+
# WARNING: Using a value larger than 10s will result in increasing the
184
+
# global HTTP write timeout, which applies to all connections and endpoints.
185
+
# See https://github.com/tendermint/classic/issues/3435
186
+
timeout_broadcast_tx_commit = "10s"
187
+
188
+
# The path to a file containing certificate that is used to create the HTTPS server.
189
+
# Might be either absolute path or path related to tendermint's config directory.
190
+
# If the certificate is signed by a certificate authority,
191
+
# the certFile should be the concatenation of the server's certificate, any intermediates,
192
+
# and the CA's certificate.
193
+
# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
194
+
tls_cert_file = ""
195
+
196
+
# The path to a file containing matching private key that is used to create the HTTPS server.
197
+
# Might be either absolute path or path related to tendermint's config directory.
198
+
# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
199
+
tls_key_file = ""
200
+
201
+
# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
202
+
unsafe = false
203
+
204
+
##### node telemetry #####
205
+
[telemetry]
206
+
enabled = true# Advised to be `true`
207
+
208
+
# the endpoint to export metrics to, like a local OpenTelemetry collector
209
+
exporter_endpoint = ""# Change me to the OTEL endpoint!
210
+
meter_name = "test6.gno.land"
211
+
212
+
# the ID helps to distinguish instances of the same service that exist at the same time (e.g. instances of a horizontally scaled service), in Prometheus this is transformed into the label 'exported_instance
213
+
service_instance_id = "gno-node-1"# Change me!
214
+
215
+
# in Prometheus this is transformed into the label 'exported_job'
0 commit comments