Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Parameter
    summaryPort of the Saga server. Use -1 to disable HTTP
    default8080
    nameapiPort
    typeinteger
  • Parameter
    summaryThe HTTPS port to use
    default443
    namesecureApiPort
    typeinteger
  • Parameter
    summaryIp address the server will be listening for request
    default0.0.0.0
    namehost
  • Parameter
    summaryServer timeout for asynchronous requests.
    default30000
    nameserverTimeout
    typedouble
  • Parameter
    summaryMax payload size limit for requests. The value is in bytes, so the default is 1000000 bytes or 1MB.
    default1000000
    namemaxRequestPayloadSize
    typedouble

CORS (added in 1.3.3)

Manages the security configuration regarding encrypted communication and authentication

  • Parameter
    summaryCORS configuration
    namecors
    typejson

    • Parameter
      summaryList or origins to allow, if you want to allow all just add ["*"]
      default*
      nameallow_origins
      typestring array
    • Parameter
      summaryAllow credentials, values "true" or "false"
      defaulttrue
      nameallow_credentials
    • Parameter
      summaryList or methods to allow, if you want to allow all just add ["*"]
      default*
      nameallow_methods
      typestring array
    • Parameter
      summaryList or headers to allow, if you want to allow all just add ["*"]
      default*
      nameallow_headers
      typestring array
    • Parameter
      summaryList or headers to expose in the response, if you want to expose all just add ["*"]
      default*
      nameexpose_headers
      typestring array

Security 

Manages the security configuration regarding encrypted communication and authentication

...