diff --git a/README.md b/README.md index 68413592..c82dec2b 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ port, that implements the Envoy Rate Limit protocol (v3). - [**Getting started**](#getting-started) - [**How it works**](/doc/how-it-works.md) +- [**Configuration**](/doc/server/configuration.md) - [**Development**](#development) - [**Testing Environment**](limitador-server/sandbox/README.md) - [**Kubernetes**](limitador-server/kubernetes/) diff --git a/doc/server/configuration.md b/doc/server/configuration.md index f76baf87..2cfb8d4f 100644 --- a/doc/server/configuration.md +++ b/doc/server/configuration.md @@ -35,6 +35,8 @@ Options: Validates the LIMITS_FILE and exits -H, --rate-limit-headers Enables rate limit response headers [default: NONE] [possible values: NONE, DRAFT_VERSION_03] + --grpc-reflection-service + Enables gRPC server reflection service -h, --help Print help -V, --version diff --git a/limitador-server/src/main.rs b/limitador-server/src/main.rs index e5546578..079e45fc 100644 --- a/limitador-server/src/main.rs +++ b/limitador-server/src/main.rs @@ -522,7 +522,7 @@ fn create_config() -> (Configuration, &'static str) { .long("grpc-reflection-service") .action(ArgAction::SetTrue) .display_order(9) - .help("enable gRPC server reflection service"), + .help("Enables gRPC server reflection service"), ) .subcommand( Command::new("memory")