nginx
on Ubuntu is a virtual package provided by one of five packages from the official repositories (at least as of 14.04, defaulting to nginx-core
, I believe):
$ apt-cache depends nginx | tail -n+2 | cut -d: -f 2 | sort -u
nginx-core
nginx-extras
nginx-full
nginx-light
nginx-naxsi
What is the difference between these packages and what are the recommended use cases for them?
This somewhat old Debian Wiki page has a feature comparison between extras
, full
, light
and naxsi
, but no mention is made of core
. How much of it has changed in 14.04?
secondary
As I understand it, nginx
doesn't support runtime enabling of modules like Apache does, so would installing nginx-extras
impact performance?