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
Name | Type | Constraints | Description |
---|---|---|---|
stanza | string | The name of the configuration stanza which contains the configuration entry. | |
entry | string | The name of the configuration entry. | |
operation | string | Values: delete , add , set | The operation to be perform on the configuration entry. |
value | Array of string | The 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"]
Updated about 2 years ago