HTTP/2 for Nginx

Hello,

I would like to ask you if it is possible to enable http2 in Nginx. Maybe optional depending on the output of "nginx -V". It must contain "--with-http_v2_module" or optional with a checkbox in nginx server settings.

Best regards, Patrick

Status: 
Active

Comments

Can http2 be enabled in the Nginx config file? If so, it would be simplest to do it there.

You need to add it to every server.

server {
    listen 443 ssl http2;
....

Ok .. this is something we could add, but right now it's not a high priority. You may be better off simply editing the config files directly on your system.