Ubuntu16 Nginx的安裝與基本配置

關於Nginx

它是一個輕量級、高性能、穩定性高、併發性好的HTTP和反向代理服務器,當咱們搭建本身的應用時,一般用它做爲反向代理服務器,圖片服務器和負載均衡。css

 

1.Ubuntu 16安裝 Nginx

這裏有2種方式能夠安裝:html

1.從互聯網中的軟件倉庫安裝

直接使用命令行:sudo apt-get install nginxnginx

安裝好後(這裏應該是幫你安裝了nginx所須要的依賴庫),測試:sudo service nginx start正則表達式

能夠看到默認的80端口已經處於監聽狀態了。瀏覽器

注: ,能夠看到,自動下載的版本較低。服務器

nginx的卸載(按順序執行):併發

sudo apt-get remove nginx nginx-common # 卸載刪除除了配置文件之外的全部文件。負載均衡

sudo apt-get purge nginx nginx-common # 卸載全部東東,包括刪除配置文件。性能

sudo apt-get autoremove # 在上面命令結束後執行,主要是卸載刪除Nginx的再也不被使用的依賴包。測試

sudo apt-get remove nginx-full nginx-common #卸載刪除兩個主要的包。

 

2.推薦去官網下載tar包,手動配置依賴環境(參考:http://www.javashuo.com/article/p-tvunbutu-gz.html

1.安裝gcc g++的依賴庫

sudo apt-get install build-essential(c語言的編譯環境)
sudo apt-get install libtool(腳本庫)

安裝pcre依賴庫(正則表達式庫)

sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev

安裝zlib依賴庫(壓縮解壓用)

sudo apt-get install zlib1g-dev

安裝SSL依賴庫(16默認已經安裝了)

sudo apt-get install openssl

若是沒有ftp可使用rz命令上傳文件。
#解壓:
tar -zxvf nginx-1.14.2.tar.gz
#進入解壓目錄:
cd nginx-1.14.2
#編譯:
make
#安裝:
sudo make install
#啓動:
sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
注意:-c 指定配置文件的路徑,不加的話,nginx會自動加載默認路徑的配置文件,能夠經過-h查看幫助命令。

nginx默認是80端口,輸入地址便可看到nginx首頁:

 

2.nginx基本配置

參考(http://www.javashuo.com/article/p-zocaqtlf-nn.html)(https://carrot.is/coding/nginx_introduction

nginx的配置文件默認位於/usr/local/nginx/conf下的nginx.conf。先看一下它的默認配置:

 server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        ...
}

nginx.conf配置功能的格式像css,打開nginx.conf,其中重點是做爲服務器的配置的server:

 

LISTEN:

server{
  listen 80;  
}

listen表明服務器的監聽端口,默認是80.通常來講這個默認的端口不是必須的。

 

SERVER_NAME:

 server_name  localhost;

server_name也是一個很重要的參數,任意請求通過該nginx服務器,都會去匹配這個server_name對應的域名,並被匹配到不一樣的server。

好比咱們能夠這樣設置:

    server {
        listen       80;
        server_name localhost1;

        location / {
            root   html;
            index  index1.html index1.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
       }

   }
   server {
        listen       80;
        server_name localhost2;

        location / {
            root   html;
            index  index2.html index2.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
       }
   }

上面設置了2個server。location是路由配置,index指的是該服務器的默認首頁。

這樣設置之後,當咱們本地配置了host,訪問localhost1這個域名就會進入index1.html這個主頁,訪問localhost2會訪問index2.html。

這個功能很強大,它可讓你在一個配置文件裏管理不一樣的站點,使用不一樣的域名,並給予它們不一樣的規則。

 

 

LOCATION:

server_name  letsdoit.com;

        location / {
            root   html;
            index  index.html index.htm;
        }
...

 

location是一個對url訪問的路由,它能夠配置多個,並用正則匹配。讓不一樣的路徑訪問到不一樣的應用。

好比上面的配置,location後面跟單獨的"/" ,表示該地址下任意路徑都匹配到其中的應用。訪問www.letsdoit.com/asdf 就會匹配到這個 index.html。.

location中的「root」表明資源的路徑(作圖片服務器時有用)。「index」表明默認主頁。

下面介紹一點經常使用的配置:(示例來源:https://blog.51cto.com/superpcm/2092317

location = / { [ configuration A ] }                     #用戶請求"/"時,匹配A,例如:www.pcm.com/
location / { [ configuration B ] }                       #當用戶請求"/index.html"時,匹配B,例如:www.pcm.com/index.html
location /documents/ { [ configuration C ] }             #當用戶請求"/documents/"時,匹配C,例如:www.pcm.com/documents/index.html      
location ^~ /images/ { [ configuration D ] }             #當用戶請求"/images/"時,匹配D,:www.pcm.com/images/1.jpg 
location ~* \.(gif|jpg|jpeg)$ { [ configuration E ] }    #當用戶請求".gif|.jpg|.jpeg"時,匹配E,例如:www.pcm.com/documents/1.jpg
                                                         #上面的反斜槓是轉義字符,$的意思是結尾

上面的是一些基本的配置,還有些重要的配置,當nginx作代理或者負載的時候會用到。

 

3.nginx做爲圖片服務器的例子

nginx做爲靜態資源服務器的性能也很強大,咱們經常把它做爲圖片服務器使用。

咱們能夠利用location的規則,把單獨的一個應用做爲靜態資源訪問:

配置文件以下:

 server {
        listen       80;
        server_name  localhost;

        location /images/ {
            root   /home/ftp/;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
       }

   }

咱們以地址/imgages/ 開頭的url做爲資源訪問路徑。並經過root,作訪問路徑的映射:

這樣配置之後,在 /home/ftp/images文件夾上傳一張圖片作測試:

重啓nginx : ./usr/local/nginx/sbin/nginx -s reload

經過瀏覽器訪問,測試成功:

 

注意這裏新手可能會出現404的狀況。我以前認爲root映射的路徑就是url的訪問路徑,

因而我這樣設置:

 location /images/ {
       root   /home/ftp/images/;
 }

但這樣訪問的路徑實際上是 /home/ftp/images/images/。

配置root的話, 訪問後會在root配置的目錄後跟上URL,組成一個文件路徑。

若是不想在路徑上加上url,可使用「alias」(參考:https://www.cnblogs.com/jiongchen/p/9139156.html

 location /images/ {
       alias /home/ftp/images/;
 }

這樣就不會拼接上url。

注:

root響應的路徑:配置的路徑(root指向的路徑)+完整訪問路徑(location的路徑)+靜態文件

alias響應的路徑:配置路徑+靜態文件(去除location中配置的路徑)

相關文章
相關標籤/搜索