Adding an SSL certificate to a site updates the nginx config with deprecated syntax:
listen 443 ssl http2;
listen [::]:443 ssl http2;
Which throws a warning when checking nginx config. Instead it should probably use the new syntax:
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
-
Jouri Jalving moved item to project Bugs
1 year ago -
Jouri Jalving created the item
1 year ago