From a197e20d26569bf3da6733bc20087ced879a4e9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Tue, 27 Jun 2023 11:22:31 -0400 Subject: [PATCH] [#531] Fix typo in documentation about SSL --- docs/security-tuning.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/security-tuning.md b/docs/security-tuning.md index 70b002115..190363660 100644 --- a/docs/security-tuning.md +++ b/docs/security-tuning.md @@ -133,12 +133,10 @@ Besides the HTTPS configuration, the following settings related to HTTPS can be | :---------------------------: | :---------------: | :----------------------------------------------------------------------------------------------------------- | | `REDIRECT_HTTP_TO_HTTPS` | `no` | When set to `yes`, will redirect every HTTP request to HTTPS even if BunkerWeb is not configured with HTTPS. | | `AUTO_REDIRECT_HTTP_TO_HTTPS` | `yes` | When set to `yes`, will redirect every HTTP request to HTTPS only if BunkerWeb is configured with HTTPS. | -| `HTTPS_PROTOCOLS` | `TLSv1.2 TLSv1.3` | List of supported SSL/TLS protocols when HTTPS is enabled. | +| `SSL_PROTOCOLS` | `TLSv1.2 TLSv1.3` | List of supported SSL/TLS protocols when SSL is enabled. | | `HTTP2` | `yes` | When set to `yes`, will enable HTTP2 protocol support when using HTTPS. | | `LISTEN_HTTP` | `yes` | When set to `no`, BunkerWeb will not listen for HTTP requests. Useful if you want HTTPS only for example. | -When using stream, the `SSL_PROTOCOLS` can be used which takes the same value as the `HTTPS_PROTOCOLS` one. - ### Let's Encrypt STREAM support :white_check_mark: