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

Edge 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 的要求 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