初識nginx!

What——什麼是nginx

nginx是一款高性能的http服務器/反向代理服務器及電子郵件(IMAP/POP3)代理服務器。官方測試nginx可以支撐5w併發鏈接。而且cup、內存等資源消耗卻很是低,運行很是穩定。html

Function——功能

1.http服務器。nginx是一個http服務,能夠獨立提供http服務。能夠作網頁靜態服務器。
2.虛擬主機。能夠實如今一臺服務器中虛擬出多個網站。相似於購買的虛擬主機。
3.反向代理,負載均衡。當網站的訪問量達到必定的程度後,單臺服務器不能知足用戶的請求時,須要多臺服務器集羣可使用nginx作反向代理。而且多臺服務器能夠平均分擔負載,不會由於某臺服務器負載高宕(dang)機而某臺服務器閒置的狀況。linux

How——如何使用

install——安裝

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

Linux系統安裝以前須要環境
  1. 安裝gcc的環境。c++

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

    (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。tomcat

    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;
    }
相關文章
相關標籤/搜索