From 15047954bd4be6148a0a760ab6aa26bb006944ea Mon Sep 17 00:00:00 2001 From: Daniel Moy <78288231+danmoy@users.noreply.github.com> Date: Mon, 21 Apr 2025 20:49:55 -0700 Subject: [PATCH] Fix deprecated listen...http2 documentation in nginx reverse proxy 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 d408a1444d..bbcf2118c5 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; }