Re: Are there plans for Nginx supporting HTTP/2 server push?

2016-09-26 Thread atulhost
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

Re: How to check which directive actually delivers the files?

2016-01-29 Thread atulhost
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