From 76a3376d1317baaea2629b45adbe6e8921dc7d11 Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Tue, 9 Jan 2024 20:27:46 -0500 Subject: [PATCH 1/4] chore: add new grpc conn settings --- configuration/overview.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration/overview.mdx b/configuration/overview.mdx index 07eb9ae..957e598 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -118,6 +118,9 @@ export FLIPT_CORS_ALLOWED_ORIGINS="http://localhost:3000 http://localhost:3001" | server.http_port | The HTTP port on which to serve the Flipt REST API and UI | 8080 | | | server.https_port | The HTTPS port on which to serve the Flipt REST API and UI | 443 | v0.8.0 | | server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | +| server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | +| server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | +| server.grpc_conn_max_age_grace | Maximum amount of time a GRPC connection can live for outstanding RPCs after exceeding `conn_max_age` | unlimited | v1.35.0 | | server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | | server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | From 89db3aef60ba0a4a6d5531888215077d74043789 Mon Sep 17 00:00:00 2001 From: markphelps Date: Wed, 10 Jan 2024 01:29:04 +0000 Subject: [PATCH 2/4] chore: format code --- configuration/overview.mdx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/configuration/overview.mdx b/configuration/overview.mdx index 957e598..baede1d 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -111,18 +111,18 @@ export FLIPT_CORS_ALLOWED_ORIGINS="http://localhost:3000 http://localhost:3001" ### Server -| Property | Description | Default | Since | -| ----------------- | -------------------------------------------------------------- | ------- | ------ | -| server.protocol | http or https | http | v0.8.0 | -| server.host | The host address on which to serve the Flipt application | 0.0.0.0 | | -| server.http_port | The HTTP port on which to serve the Flipt REST API and UI | 8080 | | -| server.https_port | The HTTPS port on which to serve the Flipt REST API and UI | 443 | v0.8.0 | -| server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | -| server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | -| server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | +| Property | Description | Default | Since | +| ------------------------------ | ----------------------------------------------------------------------------------------------------- | --------- | ------- | +| server.protocol | http or https | http | v0.8.0 | +| server.host | The host address on which to serve the Flipt application | 0.0.0.0 | | +| server.http_port | The HTTP port on which to serve the Flipt REST API and UI | 8080 | | +| server.https_port | The HTTPS port on which to serve the Flipt REST API and UI | 443 | v0.8.0 | +| server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | +| server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | +| server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | | server.grpc_conn_max_age_grace | Maximum amount of time a GRPC connection can live for outstanding RPCs after exceeding `conn_max_age` | unlimited | v1.35.0 | -| server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | -| server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | +| server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | +| server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | ### Authentication From 46eb9760b3d4cfc4cffc268aa93eb6e47f92cc89 Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Wed, 10 Jan 2024 07:36:45 -0500 Subject: [PATCH 3/4] chore: Update overview.mdx Co-authored-by: Roman Dmytrenko --- configuration/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/overview.mdx b/configuration/overview.mdx index baede1d..edc29ec 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -120,7 +120,7 @@ export FLIPT_CORS_ALLOWED_ORIGINS="http://localhost:3000 http://localhost:3001" | server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | | server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | | server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | -| server.grpc_conn_max_age_grace | Maximum amount of time a GRPC connection can live for outstanding RPCs after exceeding `conn_max_age` | unlimited | v1.35.0 | +| server.grpc_conn_max_age_grace | Maximum amount of time a GRPC connection can live for outstanding RPCs after exceeding `grpc_conn_max_age ` | unlimited | v1.35.0 | | server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | | server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | From 16c51eabeab6ede56ce8326e0431d53c053e5f55 Mon Sep 17 00:00:00 2001 From: markphelps Date: Wed, 10 Jan 2024 12:37:08 +0000 Subject: [PATCH 4/4] chore: format code --- configuration/overview.mdx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/configuration/overview.mdx b/configuration/overview.mdx index edc29ec..311acfc 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -111,18 +111,18 @@ export FLIPT_CORS_ALLOWED_ORIGINS="http://localhost:3000 http://localhost:3001" ### Server -| Property | Description | Default | Since | -| ------------------------------ | ----------------------------------------------------------------------------------------------------- | --------- | ------- | -| server.protocol | http or https | http | v0.8.0 | -| server.host | The host address on which to serve the Flipt application | 0.0.0.0 | | -| server.http_port | The HTTP port on which to serve the Flipt REST API and UI | 8080 | | -| server.https_port | The HTTPS port on which to serve the Flipt REST API and UI | 443 | v0.8.0 | -| server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | -| server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | -| server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | +| Property | Description | Default | Since | +| ------------------------------ | ----------------------------------------------------------------------------------------------------------- | --------- | ------- | +| server.protocol | http or https | http | v0.8.0 | +| server.host | The host address on which to serve the Flipt application | 0.0.0.0 | | +| server.http_port | The HTTP port on which to serve the Flipt REST API and UI | 8080 | | +| server.https_port | The HTTPS port on which to serve the Flipt REST API and UI | 443 | v0.8.0 | +| server.grpc_port | The port on which to serve the Flipt GRPC server | 9000 | | +| server.grpc_conn_max_idle_time | Maximum amount of time a GRPC connection can be idle | unlimited | v1.35.0 | +| server.grpc_conn_max_age | Maximum amount of time a GRPC connection can live | unlimited | v1.35.0 | | server.grpc_conn_max_age_grace | Maximum amount of time a GRPC connection can live for outstanding RPCs after exceeding `grpc_conn_max_age ` | unlimited | v1.35.0 | -| server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | -| server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | +| server.cert_file | Path to the certificate file (if protocol is set to https) | | v0.8.0 | +| server.cert_key | Path to the certificate key file (if protocol is set to https) | | v0.8.0 | ### Authentication