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

Edge for Private Cloud 4.19.01

Edge Router 和 Message Processor 已預先定義要求/回應標頭和行大小的上限。

設定路由器的限制

如要變更 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