Select Git revision
This project manages its dependencies using Go Modules.
Learn more
server_template.yaml 1.51 KiB
# START YAML ===
# registration code used for first time registration. Unique. Provided by xx network
registrationCode: "AAAA"
useGPU: false
devMode: true
rawPermAddr: true
cmix:
paths:
# Path where the ID will be stored after the ID is created on first run
# used by the wrapper script
idf: "results/servers/nodeID-0.json"
# Path to the self signed TLS cert that the node uses for identification
cert: "../keys/cmix.rip.crt"
# Path to the private key for the self signed TLS cert
key: "../keys/cmix.rip.key"
# Path to where the log will be stored
log: "results/servers/server-0.log"
#
ipListOutput: "results/servers/ipList-1.txt"
# Path where an error file will be placed in the event of a fatal error
# used by the wrapper script
errOutput: "results/servers/errServer-0.txt"
# port the node will communicate on
port: 11200
overridePublicIP: "0.0.0.0"
database:
name: "cmix_server"
username: "cmix"
password: ""
address: ""
gateway:
paths:
# Path to the self signed TLS cert used by the gateway
cert: "../keys/cmix.rip.crt"
scheduling:
paths:
# Path to the self signed TLS cert used by the permissioning. Provided by xx network
cert: "../keys/cmix.rip.crt"
# IP Address of the permissioning server, provided by xx network
address: "0.0.0.0:18000"
metrics:
# location of stored metrics data. Modification to set to permissioning
# server instead of saving will be made at a later date
log: "results/servers/metrics-server-0.log"
# === END YAML