mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-26 13:47:03 +02:00
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:
parent
6857cc2b97
commit
6a62467998
@ -117,7 +117,8 @@ server {
|
||||
set $port 8971;
|
||||
|
||||
listen 80;
|
||||
listen 443 ssl http2;
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
|
||||
server_name frigate.domain.com;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user