February 2018
Beginner to intermediate
348 pages
9h 40m
English
The quickest, and easiest, way to install Nginx is to simply use your OS-provided version. Most of the time, these are kept fairly updated; however, for some Linux distributions focusing on stability, you may only have older versions of Nginx available. Sometimes, your Linux distribution may provide multiple versions of Nginx with different compile flags.
In general, before embarking on a more complex journey, we should check if we can use the easy solution. For a Debian-based operating system, we first find the Nginx compiles available then get the info for the one we want:
apt-cache search nginxapt-cache show PACKAGE_NAMEapt-get install PACKAGE_NAME
For Red Hat Linux-based operating systems, we need to enable ...