How To Install Nginx on Ubuntu 16.04

Introduction

Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most cases and can be used as a web server or a reverse proxy.

In this guide, we'll discuss how to get Nginx installed on your Ubuntu 16.04 server.

Prerequisites

Before you begin this guide, you should have a regular, non-root user with?sudo?privileges configured on your server. You can learn how to configure a regular user account by following our?initial server setup guide for Ubuntu 16.04.

When you have an account available, log in as your non-root user to begin.

Step 1: Install Nginx

Nginx is available in Ubuntu's default repositories, so the installation is rather straight forward.

Since this is our first interaction with the?apt?packaging system in this session, we will update our local package index so that we have access to the most recent package listings. Afterwards, we can install?nginx:

sudo apt-get update

sudo apt-get install nginx

After accepting the procedure,?apt-get?will install Nginx and any required dependencies to your server.

Step 2: Adjust the Firewall

Before we can test Nginx, we need to reconfigure our firewall software to allow access to the service. Nginx registers itself as a service with?ufw, our firewall, upon installation. This makes it rather easy to allow Nginx access.

We can list the applications configurations that?ufw?knows how to work with by typing:

sudo ufw app list

You should get a listing of the application profiles:

Output

Available applications:? Nginx Full? Nginx HTTP? Nginx HTTPS? OpenSSH

As you can see, there are three profiles available for Nginx:

Nginx Full: This profile opens both port 80 (normal, unencrypted web traffic) and port 443 (TLS/SSL encrypted traffic)

Nginx HTTP: This profile opens only port 80 (normal, unencrypted web traffic)

Nginx HTTPS: This profile opens only port 443 (TLS/SSL encrypted traffic)

It is recommended that you enable the most restrictive profile that will still allow the traffic you've configured. Since we haven't configured SSL for our server yet, in this guide, we will only need to allow traffic on port 80.

You can enable this by typing:

sudo ufw allow 'Nginx HTTP'

You can verify the change by typing:

sudo ufw status

You should see HTTP traffic allowed in the displayed output:

Output

Status: activeTo? ? ? ? ? ? ? ? ? ? ? ? Action? ? ? From--? ? ? ? ? ? ? ? ? ? ? ? ------? ? ? ----OpenSSH? ? ? ? ? ? ? ? ? ? ALLOW? ? ? Anywhere? ? ? ? ? ? ? ? ? Nginx HTTP? ? ? ? ? ? ? ? ALLOW? ? ? Anywhere? ? ? ? ? ? ? ? ? OpenSSH (v6)? ? ? ? ? ? ? ALLOW? ? ? Anywhere (v6)? ? ? ? ? ? Nginx HTTP (v6)? ? ? ? ? ? ALLOW? ? ? Anywhere (v6)

Step 3: Check your Web Server

At the end of the installation process, Ubuntu 16.04 starts Nginx. The web server should already be up and running.

We can check with the?systemd?init system to make sure the service is running by typing:

systemctl status nginx

Output

● nginx.service - A high performance web server and a reverse proxy server? Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)? Active:active (running)since Mon 2016-04-18 16:14:00 EDT; 4min 2s ago Main PID: 12857 (nginx)? CGroup: /system.slice/nginx.service? ? ? ? ? ├─12857 nginx: master process /usr/sbin/nginx -g daemon on; master_process on? ? ? ? ? └─12858 nginx: worker process

As you can see above, the service appears to have started successfully. However, the best way to test this is to actually request a page from Nginx.

You can access the default Nginx landing page to confirm that the software is running properly. You can access this through your server's domain name or IP address.

If you do not have a domain name set up for your server, you can learn?how to set up a domain with DigitalOcean?here.

If you do not want to set up a domain name for your server, you can use your server's public IP address. If you do not know your server's IP address, you can get it a few different ways from the command line.

Try typing this at your server's command prompt:

ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'

You will get back a few lines. You can try each in your web browser to see if they work.

An alternative is typing this, which should give you your public IP address as seen from another location on the internet:

sudo apt-get install curl

curl -4 icanhazip.com

When you have your server's IP address or domain, enter it into your browser's address bar:

http://server_domain_or_IP

You should see the default Nginx landing page, which should look something like this:

This page is simply included with Nginx to show you that the server is running correctly.

Step 4: Manage the Nginx Process

Now that you have your web server up and running, we can go over some basic management commands.

To stop your web server, you can type:

sudo systemctl stop nginx

To start the web server when it is stopped, type:

sudo systemctl start nginx

To stop and then start the service again, type:

sudo systemctl restart nginx

If you are simply making configuration changes, Nginx can often reload without dropping connections. To do this, this command can be used:

sudo systemctl reload nginx

By default, Nginx is configured to start automatically when the server boots. If this is not what you want, you can disable this behavior by typing:

sudo systemctl disable nginx

To re-enable the service to start up at boot, you can type:

sudo systemctl enable nginx

Step 5: Get Familiar with Important Nginx Files and Directories

Now that you know how to manage the service itself, you should take a few minutes to familiarize yourself with a few important directories and files.

Content

/var/www/html: The actual web content, which by default only consists of the default Nginx page you saw earlier, is served out of the?/var/www/html?directory. This can be changed by altering Nginx configuration files.

Server Configuration

/etc/nginx: The Nginx configuration directory. All of the Nginx configuration files reside here.

/etc/nginx/nginx.conf: The main Nginx configuration file. This can be modified to make changes to the Nginx global configuration.

/etc/nginx/sites-available/: The directory where per-site "server blocks" can be stored. Nginx will not use the configuration files found in this directory unless they are linked to the?sites-enabled?directory (see below). Typically, all server block configuration is done in this directory, and then enabled by linking to the other directory.

/etc/nginx/sites-enabled/: The directory where enabled per-site "server blocks" are stored. Typically, these are created by linking to configuration files found in the?sites-availabledirectory.

/etc/nginx/snippets: This directory contains configuration fragments that can be included elsewhere in the Nginx configuration. Potentially repeatable configuration segments are good candidates for refactoring into snippets.

Server Logs

/var/log/nginx/access.log: Every request to your web server is recorded in this log file unless Nginx is configured to do otherwise.

/var/log/nginx/error.log: Any Nginx errors will be recorded in this log.

Conclusion

Now that you have your web server installed, you have many options for the type of content to serve and the technologies you want to use to create a richer experience.

Learn?how to use Nginx server blocks?here. If you'd like to build out a more complete application stack, check out this article on?how to configure a LEMP stack on Ubuntu 16.04.

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末脱衙,一起剝皮案震驚了整個濱河市罩润,隨后出現(xiàn)的幾起案子仲器,更是在濱河造成了極大的恐慌衩匣,老刑警劉巖始锚,帶你破解...
    沈念sama閱讀 218,284評論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡鳍烁,警方通過查閱死者的電腦和手機得糜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,115評論 3 395
  • 文/潘曉璐 我一進店門敬扛,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人朝抖,你說我怎么就攤上這事啥箭。” “怎么了治宣?”我有些...
    開封第一講書人閱讀 164,614評論 0 354
  • 文/不壞的土叔 我叫張陵急侥,是天一觀的道長砌滞。 經(jīng)常有香客問我,道長坏怪,這世上最難降的妖魔是什么贝润? 我笑而不...
    開封第一講書人閱讀 58,671評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮铝宵,結(jié)果婚禮上打掘,老公的妹妹穿的比我還像新娘。我一直安慰自己鹏秋,他們只是感情好尊蚁,可當我...
    茶點故事閱讀 67,699評論 6 392
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著侣夷,像睡著了一般横朋。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上惜纸,一...
    開封第一講書人閱讀 51,562評論 1 305
  • 那天叶撒,我揣著相機與錄音,去河邊找鬼耐版。 笑死祠够,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的粪牲。 我是一名探鬼主播古瓤,決...
    沈念sama閱讀 40,309評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼腺阳!你這毒婦竟也來了落君?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,223評論 0 276
  • 序言:老撾萬榮一對情侶失蹤亭引,失蹤者是張志新(化名)和其女友劉穎绎速,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體焙蚓,經(jīng)...
    沈念sama閱讀 45,668評論 1 314
  • 正文 獨居荒郊野嶺守林人離奇死亡纹冤,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,859評論 3 336
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了购公。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片萌京。...
    茶點故事閱讀 39,981評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖宏浩,靈堂內(nèi)的尸體忽然破棺而出知残,到底是詐尸還是另有隱情,我是刑警寧澤比庄,帶...
    沈念sama閱讀 35,705評論 5 347
  • 正文 年R本政府宣布求妹,位于F島的核電站乏盐,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏制恍。R本人自食惡果不足惜丑勤,卻給世界環(huán)境...
    茶點故事閱讀 41,310評論 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望吧趣。 院中可真熱鬧,春花似錦耙厚、人聲如沸强挫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,904評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽俯渤。三九已至,卻和暖如春型宝,著一層夾襖步出監(jiān)牢的瞬間八匠,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,023評論 1 270
  • 我被黑心中介騙來泰國打工趴酣, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留梨树,地道東北人。 一個月前我還...
    沈念sama閱讀 48,146評論 3 370
  • 正文 我出身青樓岖寞,卻偏偏與公主長得像抡四,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子仗谆,可洞房花燭夜當晚...
    茶點故事閱讀 44,933評論 2 355

推薦閱讀更多精彩內(nèi)容