Hi Mastercan,
As of now NGINX is supporting HTTP/2 Natively here is how to activate it.
https://atulhost.com/enable-http2-nginx
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,269749,269863#msg-269863
___
nginx mailing list
nginx@nginx.org
To server static files from nginx use the below configs inside serverblock
of nginx,
location ~* \.(js|css|png|jpg|jpeg|gif|ico|eot|otf|ttf|woff)$ {
access_log off; log_not_found off; expires 30d;
}
and use symbol "|" without quote and extension name to add more static file
or extension types.
S