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 |

      1. "Version": "20190101000000",
      2. "Config": {
      3. "example_product": [
      4. "cond": "req_path_prefix_in(\"/header\", false)",
      5. {
      6. "cmd": "RSP_HEADER_SET",
      7. "params": [
      8. "X-Proxied-By",
      9. "bfe"
      10. }
      11. ],
      12. "last": true
      13. }
      14. ]
      15. }