NGINX is an open source reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a web server (origin server). The NGINX project started with a strong focus on high concurrency, high performance, and low memory usage. NGINX serves static content more efficiently than most of the more commonly used web server like Apache HTTP Server.

NGINX offers official PPA that comes with two options Mainline and Stable build. Stable builds are a bit older builds that have been tested to have rock solid stability compared to Mainline builds of NGINX. The Mainline build of NGINX can be also called development builds of NGINX, Mainline has more features than the Stable builds, Mainline is also not completely bug free, Mainline is only recommended if you want to use the latest and greatest version of NGINX for various reasons or to just to have the latest version.

I use a Stable version of NGINX on my production server and run the development or Mainline version of NGINX on my development server with the latest version of PHP.

Installing stable build (production server)

<code>sudo apt-add-repository ppa:nginx/stable</code>Code language: HTML, XML (xml)

Installing development build (local/testing/development) Don’t run in production

sudo apt-add-repository ppa:nginx/development  

Now we can update the local database.

sudo apt-get update Now we can install NGINX  
Code language: JavaScript (javascript)
sudo apt-get install nginx-full  
Code language: JavaScript (javascript)

Starting NGINX.

sudo /etc/init.d/nginx start  

Now you can visit 127.0.0.1.

I compiled a list of software and services that I use to improve my workflow, here is the link to the list.

Darryl Dias

I’m Darryl. I’m a 3D Artist, Programmer and Linux enthusiast. On this site I share my insights, tips and tricks, tutorials, methods and best practices.