Skip to content
Snippets Groups Projects
Select Git revision
  • c9c981986b1eb1a381701fb7c7b5e5e66a8586ac
  • release default
  • master protected
  • feature/xx-4717/logLevel
  • XX-4626/SingleUsePackage
  • josh/DmPackage
  • xx-4437/no-registration
  • feature/project/DM
  • project/channels
  • feature/ctidh
  • Jakub/rootless-CI
  • jono/wasmDemo
  • feature/XX-4108/updateProtoc
  • feature/hotfix/unsafe_send_to_self
  • Anne/OldSessionTesting
  • hotfix/groupChat
  • josh/groupCreationScript
  • feature/XX-3797/restore
  • feature/XX-3789/DeleteIndividualRequests
  • dev
  • feature/debugSendCMIX
21 results

gateway-4.yaml

Blame
  • gateway-4.yaml 1.75 KiB
    # START YAML ===
    ################################################################################
    ## Copyright © 2019 Privategrity Corporation                                   #
    ##                                                                             #
    ## All rights reserved.                                                        #
    ################################################################################
    
    # Output log file
    log: "results/gateways/gateway-4.log"
    
    # Log message level
    logLevel: 1
    
    # The public IP address and port of the node associated with this gateway
    nodeAddress: "127.0.0.1:50003"
    
    # Port for Gateway to listen on. Gateway must be the only listener on this port.
    # Required field.
    port: 8443
    
    # 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"
    
    # 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-4-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
    permissioningCertPath: "../keys/cmix.rip.crt"
    # Path to the certificate file
    serverCertPath: "../keys/cmix.rip.crt"
    
    IP_Whitelist_File: "whitelist.txt"
    User_Whitelist_File: "whitelist.txt"
    
    knownRoundsPath: "results/gateways/knownrounds-4.json"
    lastUpdateIdPath: "results/gateways/lastupdateid-4.txt"
    devMode: true
    enableGossip: true
    
    # === END YAML