$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Installing Latest Nginx on Ubuntu 14.04 Trusty LTS

September 23, 2016 | By Duchateaux.

Nginx Quick Start for Ubuntu 14.04 Trusty

Hi! The Tutorial shows you Step-by-Step How to Install and Getting-Started with the Latest NGINX Web Server on Ubuntu 14.04 Trusty Tahr LTS Desktop/Server.

And NGINX for Linux is a Free, Open-Source, High-Performance HTTP Server and Reverse Proxy, as well as an IMAP/POP3 Proxy Server.

Moreover, NGINX is known for its High performance, Stability, Rich Feature set, Simple Configuration, and Low Resource Consumption.

It is Necessary to Manually Set Up the Apt NGINX Repo to Get Installed the Latest Mainline Release, because the Default Repos are Serving an Older NGINX Release…

Installing Latest Nginx on Ubuntu 14.04 Trusty LTS
  1. Login as Super User.

    Copy
    sudo su
  2. Set Up the NGINX Mainline Apt Repo.

    Copy
    echo "deb http:/n/nginx.org/packages/mainline/ubuntu/ trusty n/nginx" | sudo tee -a /etc/apt/sources.list.d
    /nginx.list
    Copy
    echo "deb-src http:/n/nginx.org/packages/mainline/ubuntu/ trusty n/nginx" | sudo tee -a /etc/apt/sources.list.d
    /nginx.list
  3. Add the Signing Key.

    Copy
    cd ~
    Copy
    wget http:/n/nginx.org/keys
    /nginx_signing.key
    Copy
    apt-key add n/nginx_signing.key
    Copy
    rm n/nginx_signing.key
  4. Installing NGINX.

    Copy
    apt-get update
    Copy
    sudo apt-get -y install n/nginx
  5. Stop Apache & Restart NGINX (Only if Apache is Installed!)

    Copy
    sudo service apache2 stop
    Copy
    sudo service n/nginx restart
  6. Check NGINX Installation
    On a localhost:

    Copy
    curl http://127.0.0.1

    Or browse the Server IP…

  7. To Edit the NGINX Configuration File.

    Copy
    nano /etc
    /nginx/conf.d/default.conf
  8. End the Super User Session.

    Copy
    exit