Experimental support for HTTP/2 became available in Nginx version 1.9.5 (mainline). It is really easy to enable, and I’ll show you how.
If you’re already running SPDY, please note that the SPDY module have been replaced with the HTTP/2 module in Nginx. Fortunately, to run HTTP/2 you just need to upgrade to Nginx 1.9.5 or later and replace spdy
with http2
on yourlisten
directive line.
Now, make sure your version of Nginx is compiled with HTTP/2 support:
$ nginx -V
Make sure you can find --with-http_v2_module
somewhere in that output. If you don’t, upgrade to a build that supports HTTP/2 – like the link I posted above.
Now it is as simple as adding a single word to your Nginx config. Open the server block config for your HTTPS site (all implementations of HTTP/2 require HTTPS), and change this line:
listen 443 ssl;
to:
listen 443 ssl http2;
and reload your config:
$ service nginx reload
(Original post, Other post, and other…)