-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgateway-2.yaml
45 lines (35 loc) · 1.53 KB
/
gateway-2.yaml
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
# START YAML ===
################################################################################
## Copyright © 2019 Privategrity Corporation #
## #
## All rights reserved. #
################################################################################
# Output log file
log: "results/gatway-2.log"
# Log message level
logLevel: 2
# The public IP address and port of the node associated with this gateway
cmixAddress: "127.0.0.1:60001"
# The public IPv4 address of the Gateway, as reported to the network, to use
# instead of dynamically looking up Gateway's own IP address. If a port is not
# included, then the port flag is used instead.
overridePublicIP: "0.0.0.0"
# Port for Gateway to listen on. Gateway must be the only listener on this port.
# Required field.
port: 9441
# The number of seconds a message should remain in the globals before being
# deleted from the user's message queue
messageTimeout: "1800s"
# Path to where the IDF is saved. This is used by the wrapper management script.
idfPath: "results/gateways/gateway-2-idf.json"
# === REQUIRED FOR ENABLING TLS ===
# Path to the private key file
keyPath: "../keys/cmix.rip.key"
# Path to the certificate file
certPath: "../keys/cmix.rip.crt"
# Path to the permissioning certificate
schedulingCertPath: "../keys/cmix.rip.crt"
# Path to the certificate file
cmixCertPath: "../keys/cmix.rip.crt"
devMode: true
# === END YAML