I have upgraded all my servers to use Nginx 1.8. The only thing I had to change was the IPv6 “listen” lines. Before, I had this:
listen [::]:80;
Now, I have two listen lines:
listen 80;
listen [::]:80;
Remember, the options given to ./configure last time nginx was compiled are easily found:
nginx -V
And, oh, a couple URLs for getting nginx: