Last updated
This section details the configuration for the node section of the config.yml file.
A full configuration template can be found here.
node:
listenPort: 8080
listenAddress: "127.0.0.1"listenPortDescription: The port on which the Function node will listen for incoming connections.
Default: 8080
Type: integer
listenAddressDescription: The address on which the Function node will listen for incoming connections. Using 127.0.0.1 (localhost) is recommended for security, as it restricts access to the local machine. To allow external access, you can set this to 0.0.0.0. It is recommended that you expose the node through a reverse proxy, i.e NGINX or HAProxy
Default: "127.0.0.1"
Type: string
Last updated