NginxProxyManager / nginx-proxy-manager

Docker container for managing Nginx proxy hosts with a simple, powerful interface
https://nginxproxymanager.com
MIT License
23.27k stars 2.7k forks source link

http2 deprecated, #4132

Closed play113 closed 2 weeks ago

play113 commented 2 weeks ago

Checklist

Describe the bug

nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /data/nginx/proxy_host/14.conf:19

Nginx Proxy Manager Version

2.12.1

Operating System

Debian 12 / Docker 27.2.0

Additional context

switch from

listen      X.X.X.X:443 ssl http2;

to

listen      X.X.X:X:443 ssl;
http2  on;
snordmann commented 2 weeks ago

The fix is already implemented and merged into the develop branch (and will thus be part of the next release). Related PR: #4106

play113 commented 2 weeks ago

THX