Skip to main content

Configuration

Global Config

  • Location: Config.yaml file inside inside sym-engine folder

  • Description: Configuration not related to each function but whole symphony app

  • Default: undefined

  • Example usage:

Server

  • Location: A section inside environment in Global config
  • Description: Configuration related to underlying http server of symphony
  • Default: undefined
  • Example usage:
default:
...
server:
...

Backlog

  • Location: A value inside Server section
  • Description: A backlog refers to the queue of incoming network connections waiting to be accepted by a server. It determines how many connections can be held temporarily when the server is busy. If the backlog is full, new connections may be rejected or delayed.
  • Default Value: 10
  • Example usage:
  ...
server:
backlog: 500