How to install Nginx in Ubuntu?

Recently I have installed a LAMP server in my Ubuntu Desktop 12.04 LTS.

Now how can I install Nginx and implement with my present LAMP Server?

5 Answers

From Nginx Wiki:

Open a terminal and enter the commands (remember to replace the values!):

sudo -s
nginx=stable # use nginx=development for latest development version
ubuntu=trusty # Replace this with your ubuntu version!
echo "deb $ubuntu main" > /etc/apt/sources.list.d/nginx-$nginx-$ubuntu.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C
apt-get update
apt-get install nginx

To install Nginx in your Ubuntu , open your terminal and type as

sudo -i
add-apt-repository ppa:nginx/development
apt-get update
apt-get install nginx

that will install nginx in your Ubuntu.

0

Login as Root User and type command:

Command: (apt-get update && apt-get install nginx;)

This command will install default version of nginx that comes with ubuntu software repository with latest updates.

1

Install nginx on ubuntu with easy steps

Update package with latest version

sudo apt update

Install nginx

sudo apt install nginx

Verify nginx version

nginx -V

To install stable Nginx Open terminal and run the following commands:::

sudo su
sudo add-apt-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like