設定 HTTP 要求/回應標頭限制

Private Cloud v4.18.01 專用 Edge

Edge Router 和訊息處理器對要求/回應的大小設有預先定義的限制 標頭和行大小

設定路由器的限制

如要變更 Router 的預設值,請編輯 /opt/apigee/customer/application/router.properties 中的下列屬性:

  # Request buffers
  # default:
  # conf_load_balancing_load.balancing.driver.large.header.buffers=8 16k
  # new value:
  conf_load_balancing_load.balancing.driver.large.header.buffers=8 32k

  # Response buffers
  # default:
  # conf_load_balancing_load.balancing.driver.proxy.buffer.size=64k
  # new value:
  conf_load_balancing_load.balancing.driver.proxy.buffer.size=128k

如果該檔案不存在,請建立該檔案。

如果是 conf_load_balancing_load.balancing.driver.large.header.buffers,第一個參數 會指定緩衝區數量,以及每個緩衝區的秒數。 緩衝區會以動態方式分配,並在使用後釋出。只有在要求標頭超過 1 KB 時,才會使用這些設定。如果要求的標頭要求 URI 小於 1 KB,系統甚至不會使用大型緩衝區。

針對 conf_load_balancing_load.balancing.driver.proxy.buffer.size,請指定回應緩衝區的大小。

Edge Router 是使用 Nginx 實作的。如要進一步瞭解這些屬性,請參閱:

變更下列屬性後,您必須重新啟動路由器:

> /opt/apigee/apigee-service/bin/apigee-service edge-router restart

設定訊息處理器的限制

針對負責處理傳出至後端服務的要求的訊息處理器,請在 /opt/apigee/customer/application/message-processor.properties 中編輯下列屬性,以變更這些預設值:

conf/http.properties+HTTPRequest.line.limit=7k
conf/http.properties+HTTPRequest.headers.limit=25k 
conf/http.properties+HTTPResponse.line.limit=2k 
conf/http.properties+HTTPResponse.headers.limit=25k

如果該檔案不存在,請建立該檔案。

變更下列屬性後,您必須重新啟動訊息處理器:

> /opt/apigee/apigee-service/bin/apigee-service edge-message-processor restart