HTTP リクエスト/レスポンス ヘッダーの制限の設定

Edge for Private Cloud v. 4.17.05

Edge Router と Message Processor では、リクエスト/レスポンスのサイズの上限が事前定義されている 行サイズに応じて調整します

Router の上限の構成

ルーターについて、次のプロパティを編集します。 /opt/apigee/customer/application/router.properties に保存 デフォルト値を変更します。

  # Request buffers
  conf_load_balancing_load.balancing.driver.large.header.buffers=8 16k
  # Response buffers
  conf_load_balancing_load.balancing.driver.proxy.buffer.size=64k

このファイルが存在しない場合は作成します。

conf_load_balancing_load.balancing.driver.large.header.buffers の場合、最初のパラメータは はバッファの数を指定し、2 つ目は各バッファのサイズを指定します。 バッファは動的に割り当てられ、使用後に解放されます。 これらの設定は、リクエスト ヘッダーが 1 KB を超える場合にのみ使用されます。 ヘッダー リクエスト URI が 1 KB 未満のリクエストの場合、大きなバッファは使用されません。

conf_load_balancing_load.balancing.driver.proxy.buffer.size には、レスポンス バッファのサイズを指定します。

Edge Router は Nginx を使用して実装されています。これらのプロパティの詳細については、以下をご覧ください。

次のプロパティを変更した後は、Router を再起動する必要があります。

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

Message Processor の上限の構成

バックエンド サービスに対する送信リクエストを処理する Message Processor の場合は、 /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

このファイルが存在しない場合は作成します。

これらのプロパティを変更した後は、Message Processor を再起動する必要があります。

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