代理遞迴深度檢測(全域性)

設定最大代理遞迴層數

URI

PUT /admin-api/global/1/proxy_recursion

URI引數

  • max_depth

    type: integer

    required: yes

    description: 設定最大代理遞迴層數,一個請求達到該最大層數後會報錯並響應一個 ‘502 Bad Gateway’

  • enable

    type: boolean

    required: yes

    description: 是否啟用該規則

請求示例

Shell

curl \
  -X POST \
  -H "API-Token: 1df87165-3593-4eca-a910-9ac20005e6ec" \
  http://admin-site/admin-api/global/1/proxy_recursion \
  -d '{
    "enable": true,
    "max_depth": 10
  }'

響應示例

Status: 200 OK
{"status":0}

獲取最大代理遞迴層數

URI

GET /admin-api/global/1/proxy_recursion

請求示例

Shell

curl \
  -H "API-Token: 1df87165-3593-4eca-a910-9ac20005e6ec" \
  http://admin-site/admin-api/global/1/proxy_recursion \

響應示例

Status: 200 OK
{"status":0, {"enable": true, "max_depth": 10}}