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
This commit is contained in:
Daniel Moy 2025-04-22 04:10:52 -07:00 committed by GitHub
parent 6857cc2b97
commit 6a62467998
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,7 +117,8 @@ server {
set $port 8971;
listen 80;
listen 443 ssl http2;
listen 443 ssl;
http2 on;
server_name frigate.domain.com;
}