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;

Adding an SSL certificate updates the nginx config with deprecated syntax

1 total vote
Quick Actions
Activity
View recent activity and updates
Use arrow keys to navigate