Newer
Older
# START YAML ===
################################################################################
## Copyright © 2019 Privategrity Corporation #
## #
## All rights reserved. #
################################################################################
# Output log file
# The public IP address and port of the node associated with this gateway
nodeAddress: "127.0.0.1:50001"
# Port for Gateway to listen on. Gateway must be the only listener on this port.
# Required field.
# 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 ===
keyPath: "../keys/cmix.rip.key"
certPath: "../keys/cmix.rip.crt"
# Path to the permissioning certificate
permissioningCertPath: "../keys/cmix.rip.crt"
serverCertPath: "../keys/cmix.rip.crt"
IP_Whitelist_File: "whitelist.txt"
User_Whitelist_File: "whitelist.txt"
knownRoundsPath: "results/gateways/knownrounds-2.json"
lastUpdateIdPath: "results/gateways/lastupdateid-2.txt"
devMode: true
# === END YAML