1. 程式人生 > >初識nginx!

初識nginx!

What——什麼是nginx

nginx是一款高效能的http伺服器/反向代理伺服器及電子郵件(IMAP/POP3)代理伺服器。官方測試nginx能夠支撐5w併發連線。並且cup、記憶體等資源消耗卻非常低,執行非常穩定。

Function——功能

1.http伺服器。nginx是一個http服務,可以獨立提供http服務。可以做網頁靜態伺服器。
2.虛擬主機。可以實現在一臺伺服器中虛擬出多個網站。類似於購買的虛擬主機。
3.反向代理,負載均衡。當網站的訪問量達到一定的程度後,單臺伺服器不能滿足使用者的請求時,需要多臺伺服器叢集可以使用nginx做反向代理。並且多臺伺服器可以平均分擔負載,不會因為某臺伺服器負載高宕(dang)機而某臺伺服器閒置的情況。

How——如何使用

install——安裝

官網下載nginx安裝包(http://nginx.org/)

Linux系統安裝之前需要環境
  1. 安裝gcc的環境。

    yum install gcc-c++
    
  2. 安裝PCRE。

    (Perl Compatible Regular Expressions)是一個Perl庫,包括 perl 相容的正則表示式庫。nginx的http模組使用pcre來解析正則表示式,所以需要在linux上安裝pcre庫。注:pcre-devel是使用pcre開發的一個二次開發庫。nginx也需要此庫。

    yum install -y pcre pcre-devel
    
  3. 安裝zlib。

    zlib庫提供了很多種壓縮和解壓縮的方式,nginx使用zlib對http包的內容進行gzip,所以需要在linux上安裝zlib庫。

    yum install -y zlib zlib-devel
    
  4. 安裝openssl。

    OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及SSL協議,並提供豐富的應用程式供測試或其它目的使用。
    nginx不僅支援http協議,還支援https(即在ssl協議上傳輸http),所以需要在linux安裝openssl庫。

    yum install -y openssl openssl-devel
    
安裝步驟
  1. 把nginx的原始碼包上傳到linux系統

  2. 解壓縮
    tar zxf nginx-1.8.0.tar.gz

  3. 使用configure命令建立一makeFile檔案。

	 	./configure \
		--prefix=/usr/softwear/nginx \
		--pid-path=/var/run/nginx/nginx.pid \
		--lock-path=/var/lock/nginx.lock \
		--error-log-path=/var/log/nginx/error.log \
		--http-log-path=/var/log/nginx/access.log \
		--with-http_gzip_static_module \
		--http-client-body-temp-path=/var/temp/nginx/client \
		--http-proxy-temp-path=/var/temp/nginx/proxy \
		--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
		--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
		--http-scgi-temp-path=/var/temp/nginx/scgi

注意:啟動nginx之前,上邊將臨時檔案目錄指定為/var/temp/nginx,需要在/var下建立temp及nginx目錄

 mkdir /var/temp/nginx/client -p
  1. make
  2. make install

常用命令

進入sbin目錄
啟動nginx:
	./nginx 

關閉nginx:
	./nginx -s stop
	./nginx -s quit		(推薦使用)
重新整理配置檔案:
	 ./nginx -s reload
檢查配置檔案:
	 ./nginx -t

訪問nginx:
http://localhost:80
安裝成功

config——配置

Nginx的配置檔案:
安裝目錄/conf/nginx.conf
  1. 通過埠區分不同虛擬機器(通過配置nginx監聽不同的埠,從而實現不同埠下不同的跳轉)

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
    #監聽80埠
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }
    server {
    #監聽81埠
        listen       81;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

}


  1. 通過配置域名區分虛擬主機

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }
    server {
        listen       81;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html-81;
            index  index.html index.htm;
        }
    }
    server {
        listen       80;
        server_name  www.pyfysf.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html-pyfysf;
            index  index.html index.htm;
        }
    }
    server {
        listen       80;
        server_name  www.pyfysf888.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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


上述配置檔案就可以實現通過配置不同的域名進行不同的跳轉內容。(當前僅僅是靜態資源訪問)
通過瀏覽器訪問:http://www.pyfysf.comhttp://www.pyfysf888.com 兩個域名同時繫結到一個ip地址(本地測試可以通過修改host檔案)

反向代理

  1. 正向代理

  1. 反向代理
    在這裡插入圖片描述

反向代理伺服器決定哪臺伺服器提供服務。
返回代理伺服器不提供伺服器。也是請求的轉發。

upstream tomcat1 {
	server 192.168.25.148:8080;
    }
    server {
        listen       80;
        server_name www.pyfysf.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass   http://tomcat1;
            index  index.html index.htm;
        }
    }
    upstream tomcat2 {
	server 192.168.25.148:8081;
    }
    server {
        listen       80;
        server_name  www.pyfysf888.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass   http://tomcat2;
            index  index.html index.htm;
        }
    }

如果一個服務由多條伺服器提供,需要把負載分配到不同的伺服器處理,需要負載均衡。

 upstream tomcat2 {
	server 192.168.25.148:8081;
	server 192.168.25.148:8082;
  }

可以根據伺服器的實際情況調整伺服器權重。權重越高分配的請求越多,權重越低,請求越少。預設是都是1

 upstream tomcat2 {
	server 192.168.25.148:8081;
	server 192.168.25.148:8082 weight=2;
    }