Configuration

advanced/configuration[]

This entry defines customize legacy reverse proxy daemon configuration entries. This configuration is applied last and can be used to overload parameters specified in other sections of the configuration YAML.
This entry is an array and can be used to specify multiple tuning parameters.

Properties

NameTypeConstraintsDescription
stanzastringThe name of the configuration stanza which contains the configuration entry.
entrystringThe name of the configuration entry.
operationstringValues: delete, add, setThe operation to be perform on the configuration entry.
valueArray of stringThe value(s) for the new configuration entry. The value is only required for the add and set operations.

Example

advanced:
  configuration:
    - stanza: server
      entry: web-http-port
      operation: set
      value: ["80"]
    - stanza: server
      entry: web-https-port
      operation: set
      value: ["443"]