From 32c89e5cd82ae67f224d5a57399ef399c127577c Mon Sep 17 00:00:00 2001 From: Mikhail Swift Date: Tue, 16 Jul 2024 12:28:33 -0400 Subject: [PATCH] docs: add docs for TLS config variables --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6199b5b..668a052 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ Witness Webhook is configured primarily through a YAML file, with a few environm | -------- | ------- | ----------- | | `WITNESS_WEBHOOK_CONFIG_PATH` | `/webhook-config.yaml` | The path to the yaml config file | | `WITNESS_WEBHOOK_LISTEN_ADDR` | `:8085` | The address the server will listen on | +| `WITNESS_WEBHOOK_ENABLE_TLS` | `false` | If true, witness-webhook will listen with TLS enabled | +| `WITNESS_WEBHOOK_TLS_CERT` | ` ` | Path to the TLS certificate to use | +| `WITNESS_WEBHOOK_TLS_KEY` | ` ` | Path to the TLS key to use | ### YAML Config @@ -43,4 +46,4 @@ Currently the available webhook handlers are: | Option | Default Value | Description | | ------ | ------------- | ----------- | -| `secret-file-path` | | Path to the file containing the secret used to verify webhooks from Github | \ No newline at end of file +| `secret-file-path` | | Path to the file containing the secret used to verify webhooks from Github |