From 6a6246799865d305f8b73c8efd2ac5bcc3aec347 Mon Sep 17 00:00:00 2001 From: Daniel Moy <78288231+danmoy@users.noreply.github.com> Date: Tue, 22 Apr 2025 04:10:52 -0700 Subject: [PATCH] Fix deprecated listen...http2 documentation in nginx reverse proxy (#17848) This is deprecated: listen 443 ssl http2; New syntax has a separate line: http2 on; See e.g. https://forum.hestiacp.com/t/nginx-1-25-1-listen-http2-directive-is-deprecated/9816 --- docs/docs/guides/reverse_proxy.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/guides/reverse_proxy.md b/docs/docs/guides/reverse_proxy.md index d408a1444..bbcf2118c 100644 --- a/docs/docs/guides/reverse_proxy.md +++ b/docs/docs/guides/reverse_proxy.md @@ -117,7 +117,8 @@ server { set $port 8971; listen 80; - listen 443 ssl http2; + listen 443 ssl; + http2 on; server_name frigate.domain.com; }