-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml.example
95 lines (81 loc) · 2.54 KB
/
config.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
# Example config file for tx-submit-api
# The values shown below correspond to the in-code defaults
logging:
# Logging level
#
# This can also be set via the LOGGING_LEVEL environment variable
level: info
# Health checks
#
# This can also be set via the LOGGING_HEALTHCHECKS environment variable
healthchecks: false
api:
# Listen address for the API
#
# This can also be set via the API_LISTEN_ADDRESS environment variable
address:
# Listen port for the API
#
# This can also be set via the API_LISTEN_PORT environment variable
port: 8090
metrics:
# Listen address for the metrics endpoint
#
# This can also be set via the METRICS_LISTEN_ADDRESS environment variable
address:
# Listen port for the metrics endpoint
#
# This can also be set via the METRICS_LISTEN_PORT environment variable
port: 8081
# The debug endpoint provides access to pprof for debugging purposes. This is
# disabled by default, but it can be enabled by setting the port to a non-zero
# value
debug:
# Listen address for the debug endpoint
#
# This can also be set via the DEBUG_ADDRESS environment variable
address: localhost
# Listen port for the debug endpoint
#
# This can also be set via the DEBUG_PORT environment variable
port: 0
node:
# Named Cardano network for cardano-node
#
# This is a short-cut to select the NetworkMagic and can be used to
# select mainnet, preprod, or preview networks.
#
# This can also be set via the CARDANO_NETWORK environment variable
network: mainnet
# NetworkMagic for network for cardano-node
#
# This selects the correct network for operation and can be configured to
# any network, not just the named networks.
#
# This can also be set via the CARDANO_NODE_NETWORK_MAGIC environment variable
networkMagic:
# Path to UNIX socket file for cardano-node
#
# This can also be set via the CARDANO_NODE_SOCKET_PATH environment variable
socketPath:
# Address/port for cardano-node
#
# This requires that you be running socat or similar to create a bridge
# between TCP and the UNIX socket.
#
# These can also be set via the CARDANO_NODE_SOCKET_TCP_HOST and
# CARDANO_NODE_SOCKET_TCP_PORT environment variables
address:
port:
# Skip checking connection to cardano-node
#
# On startup, we connect to the configured cardano-node and exit on failure.
#
# Setting this to true will skip this check.
skipCheck:
# Timeout for connections to cardano-node
#
# This can also be set via the CARDANO_NODE_SOCKET_TIMEOUT environment
# variable
timeout: