See also: openresty
Notes
Use strace
to verify whether NGiNX is serving gzipped static assets:
$ sudo strace -p 25249 2>&1 | grep gz
where 25249
is the pid
of the nginx worker process, which can be
found by ps ax | grep nginx
Refs
-
See my bookmarks on NGiNX.