February 2018
Beginner to intermediate
348 pages
9h 40m
English
Once you have made your choice as to which version you will be using, head over to http://nginx.org/ and find the URL of the file you wish to download. Position yourself in your home directory, which will contain the source code to be compiled, and download the file using wget:
[alex@example.com ~]$ mkdir src && cd src [alex@example.com src]$ wget http://nginx.org/download/nginx-1.13.8.tar.gz
We will be using version 1.13.8, the latest stable version as of February, 2018. Once downloaded, extract the archive contents in the current folder:
[alex@example.com src]$ tar zxf nginx-1.13.8.tar.gz
You have successfully downloaded and extracted Nginx. Now, the next step will be to configure the compilation process in ...