Introduction
Configuration
Module config file
Rule config file
| Config Item | Type | Description || —————- | ——— | —————————————————————————————— || Version | String | Verson of config file || Config | Struct | Header rules for each product. Header rule include: - Cond: “condition” expression - Actions: what to do after matched- Last: if true, stop to check the remaining rules |
"Version": "20190101000000",
"Config": {
"example_product": [
"cond": "req_path_prefix_in(\"/header\", false)",
{
"cmd": "RSP_HEADER_SET",
"params": [
"X-Proxied-By",
"bfe"
}
],
"last": true
}
]
}