Nginx是一款高性能的HTTP和反向代理服務器軟件javascript
Nginx的優勢css
Nginx由內核和模塊組成html
模塊的分類:前端
Nginx的安裝與配置java
1.安裝gcc,openssl-devel,pcre-devel和zlib-devel軟件庫node
zlib-devel軟件庫,爲了gziplinux
[root@localhost ~]# yum install gcc openssl-devel zlib-develnginx
從網上下載pcre-devel軟件,爲了重寫rewriteweb
[root@localhost src]#tar zxvf pcre-8.39.tar.gz正則表達式
[root@localhost src]# cd pcre-8.39
[root@localhost pcre-8.39]# ./configure --prefix=/usr/local/pcre
[root@localhost pcre-8.39]#make
[root@localhost pcre-8.39]#make install
2.安裝Nginx
添加用戶和組
[root@localhost src]# groupadd -r nginx
[root@localhost src]# useradd -r -g nginx nginx
下載nginx
[root@localhost src]# tar nginx-1.10.1.tar.gz
[root@localhost src]# cd nginx-1.10.1
[root@localhost nginx-1.10.1]#./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_mp4_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre=/usr/local/src/pcre-8.39
[root@localhost nginx-1.10.1]#make
[root@localhost nginx-1.10.1]#make install
[root@localhost nginx-1.10.1]#mkdir -p /var/tmp/nginx/{client,proxy,fastcgi,uwsgi,scgi}
[root@localhost nginx-1.10.1]#/usr/local/nginx/sbin/nginx -V #查看安裝nginx時的編譯選項
編譯選項解釋
--prefix=/usr/local/nginx:安裝目錄
--sbin-path=/usr/local/nginx/sbin/nginx:執行程序文件
--conf-path=/etc/nginx/nginx.conf:配置文件
--error-log-path=/var/log/nginx/error.log:錯誤日誌文件
--http-log-path=/var/log/nginx/access.log:訪問日誌文件
--pid-path=/var/run/nginx/nginx.pid:pid文件
--lock-path=/var/lock/nginx.lock:lock鎖定文件
--user=nginx:程序運行時的非特權用戶
--group=nginx:程序運行時的非特權用戶組
--with-http_ssl_module:啓用ngx_http_ssl_module支持,支持https請求
--with-http_flv_module:提供尋求內存使用基於時間的偏移量文件
--with-http_mp4_module:支持mp4
--with-http_stub_status_module:獲取nginx自上次啓動以來的工做狀態
--with-http_gzip_static_module:在線實時壓縮輸出數據流
--http-client-body-temp-path=/var/tmp/nginx/client/:設定http客戶端請求臨時文件路徑
--http-proxy-temp-path=/var/tmp/nginx/proxy/:設定http代理臨時文件路徑
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/:設定http fastcgi臨時文件路徑
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi:設定http uwsgi臨時文件路徑
--http-scgi-temp-path=/var/tmp/nginx/scgi:設定http scgi臨時文件路徑
--with-pcre:啓用pcre庫
其餘編譯選項
–with-pcre= 指向pcre庫文件目錄
–with-md5= 指向md5庫文件目錄
–with-sha1= 指向sha1庫目錄
–with-zlib= 指向zlib庫目錄
–with-openssl= 指向openssl安裝目錄
–with-debug 啓用debug日誌
–with-mail 啓用POP3/IMAP4/SMTP代理模塊支持
–with-http_secure_link_module:計算和檢查要求所需的安全連接網址
–with-http_degradation_module:容許在內存不足的狀況下返回204或444碼
3.Nginx的配置文件
Nginx主配置文件,/etc/nginx/nginx.conf
Nginx的主配置文件分爲4個部分:main(全局設置),server(主機設置),upstream(負載均衡服務器設置),location(URL匹配特定位置的設定)
(1)Nginx的全局配置
user nobody;
worker_processes 4;
error_log logs/error.log notice;
pid logs/nginx.pid;
worker_rlimit_nofile 65535;
events {
use epoll;
worker_connections 1024;
}
user nobody nobody; 指定Nginx Worker進程運行用戶以及用戶組,默認爲nobody
worker_processes 4; 指定Nginx要開啓的進程數
error_log; 定義全局錯誤日誌文件
pid; 指定進程id的存儲文件位置
worker_rlimit_nofile 65535; 用於綁定worker進程和cpu
events 用來設定Nginx的工做模式及鏈接數上限
use 用來指定nginx的工做模式,select和poll是標準的工做模式,kqueue和epoll是高效的工做模式,kqueue用在BSD系統,linux系統epoll是首選
worker_connections 用於定義nginx每一個進程的最大鏈接數,默認是1024
(2)HTTP服務器的配置
http {
include conf/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"';
client_max_body_size 20m;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
client_header_timeout 10;
client_body_timeout 10;
send_timeout 10;
include 設定mime類型,類型由mime.type文件定義
default_type 默認類型爲二進制流
log_format 指定nginx日誌的輸出格式
$remote_addr與$http_x_forwarded_for用以記錄客戶端的ip地址;
$remote_user:用來記錄客戶端用戶名稱;
$time_local: 用來記錄訪問時間與時區;
$request: 用來記錄請求的url與http協議;
$status: 用來記錄請求狀態;成功是200,
$body_bytes_sent :記錄發送給客戶端文件主體內容大小;
$http_referer:用來記錄從那個頁面連接訪問過來的;
$http_user_agent:記錄客戶瀏覽器的相關信息;
client_max_body_size 設置容許客戶端請求的最大單個文件字節數
client_header_buffer_size 指定來自客戶端請求頭的headerbuffer大小
large_client_header_buffers 指定客戶端請求中較大的消息頭的緩存最大數量和大小
sendfile 開啓高效文件傳輸模式
tcp_nopush 防止網絡堵塞
tcp_nodelay 防止網絡堵塞
keepalive_timeout 客戶端鏈接保持活動的超時時間
client_header_timeout 客戶端請求頭讀取超時時間
client_body_timeout 客戶端請求主體讀取超時時間
send_timeout 響應客戶端的超時時間
(3)HttpGzip模塊,支持在線實時壓縮輸出數據流
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
gzip 用於設置開啓或者關閉gzip
gzip_min_length 容許壓縮的頁面最小字節數
gzip_buffers 申請4個單位爲16k的內存做爲壓縮結果流緩存
gzip_http_version 識別HTTP協議版本,默認1.1
gzip_comp_level 指定gzip壓縮比
gzip_types 指定壓縮的類型
gzip_vary 讓前端的緩存服務器緩存通過gzip壓縮的頁面
(4)負載均衡配置
upstream ixdba.net{
ip_hash;
server 192.168.1.123:80 weight=3;
server 192.168.1.124:80 down;
server 192.168.1.125:8009 max_fails=3 fail_timeout=20s;
server 192.168.1.126:8080;
}
經過upstream 指定一個負載均衡器的名稱ixdba.net
負載均衡模塊調度算法
輪詢:默認,每一個請求按時間順序逐一分配到不一樣的後端服務器
weight:weight越大,分配到的訪問機率越高
ip_hash:每一個請求按訪問ip的hash結果分配
fair:依據頁面大小和加載時間長短智能的進行負載均衡
url_hash:按訪問url的hash結果來分配請求
服務器在負載均衡調度中的狀態
down:表示暫時不參與負載均衡
backup:預留的備份機器
max_fails:容許請求失敗的次數
fail_timeout:在經歷了請求失敗的次數後,暫停服務的時間
(5)虛擬主機的配置
能夠配置多個虛擬主機
server{
listen 80;
server_name 192.168.0.100 www.hyundai.com;
index index.html index.htm index.jsp;
root /web/wwwroot/www.hyundai.com
charset gb2312;
server { listen 8001; server_name localhost; location / { root /web/html; index index.html index.htm; } }
listen:監聽端口
server_name:指定ip或域名
index:默認首頁地址
root:網頁根目錄
charset:設置網頁的默認編碼格式
(6)URL匹配配置
Nginx中的location指令是NginxHttpCoreModule中重要指令。Location指令比較簡單,也比較經常使用。
location指令,是用來對url進行匹配的,URI即語法中的/uri/,能夠是字符串或正則表達式。若是是正則表達,則必須指定前綴。location指令根據URI來應用不一樣的配置,這個指令容許根據不一樣URI來應用不一樣的url配置。
Location語法語法:location [=|~|~*|^~] /uri/ { … }
= --> 開頭表示精確匹配
^~ --> 開頭表示uri以某個常規字符串開頭,理解爲匹配url路徑便可。
nginx不對url作編碼,所以請求爲/static/20%/aa,能夠被規則^~ /static/ /aa匹配到(注意是空格)。
~ --> 開頭表示區分大小寫的正則匹配
~* --> 開頭表示不區分大小寫的正則匹配
!~和!~* --> 分別爲區分大小寫不匹配及不區分大小寫不匹配的正則
/ --> 通用匹配,任何請求都會匹配到。
多個location配置的狀況下匹配順序爲:
首先匹配=,其次匹配^~, 其次是按文件中順序的正則匹配,最後是交給 / 通用匹配。當有匹配成功時候,中止匹配,按當前匹配規則處理請求。
location - .*\.(gif|jpg|jpeg|png|bmp|swf)${
root /web/wwwroot/www.hyundai.com;
expires 30d;
}
把以上這些靜態文件交給Nginx處理,expires指定靜態文件過時時間爲30天
location - ^/(upload|html)/{
root /web/wwwroot/www.hyundai.com;
expires 30d;
}
把upload和html下的全部文件都交給nginx處理
location ~ .*.jsp${
index index.jsp;
proxy_pass http://localhost:8080;
}
全部.jsp文件都交給本機的8080端口處理
4.Nginx的啓動和關閉
檢查nginx配置文件的正確性
/usr/local/nginx/sbin/nginx -t -c /etc/nginx/nginx.conf
顯示以下信息,則說明正確
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
顯示nginx的版本信息
/usr/local/nginx/sbin/nginx -v
nginx的啓動
/usr/local/nginx/sbin/nginx
查看nginx的啓動進程
ps -ef |grep nginx
從新加載配置文件
/usr/local/nginx/sbin/nginx -s reload
5.Nginx開機自動啓動
vim /etc/init.d/nginx
#!/bin/bash # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/etc/nginx/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx make_dirs() { # make required directories user=`nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` options=`$nginx -V 2>&1 | grep 'configure arguments:'` for opt in $options; do if [ `echo $opt | grep '.*-temp-path'` ]; then value=`echo $opt | cut -d "=" -f 2` if [ ! -d "$value" ]; then # echo "creating" $value mkdir -p $value && chown -R $user $value fi fi done } start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 make_dirs echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac
chmod a+x /etc/init.d/nginx #添加執行權限
chkconfig --add nginx #添加到服務管理列表
chkconfig nginx on #開機啓動
service nginx start
/usr/local/nginx/html #nginx網頁根目錄
Nginx性能優化技巧
1.減少Nginx編譯後的文件大小
編譯nginx時,默認以debug模式進行,會插入不少跟蹤和ASSERT之類的信息,在編譯以前,修改源碼,取消debug模式
源碼目錄下vim auto/cc/gcc,刪除或註釋如下幾行
# debug
CFLAGS="$CFLAGS -g"
2.爲特定的CPU指定CPU類型編譯優化
優化GCC編譯
--with-cc-opt='-O3'
--with-cpu-opt=CPU #爲特定的CPU編譯
cat /proc/cpuinfo | grep "model name" #肯定CPU類型
nginx反向代理
反向代理(Reverse Proxy)方式是指以代理服務器來接受Internet上的鏈接請求,而後將請求轉發給內部網絡上的服務器;並將從服務器上獲得的結果返回給Internet上請求鏈接的客戶端,此時代理服務器對外就表現爲一個服務器。
公網延遲高,客戶端與nginx之間的請求鏈接走公網,nginx先把這些請求緩存住,等這些請求數據所有完成以後nginx再向內網服務器請求,下降公網網絡延遲成本,同時也下降一個鏈接佔用服務端程序的時間。
由於tcp不必定一次就能把所有數據傳輸完畢,因此一個鏈接可能須要等待好久才能把全部須要的數據都傳輸完畢,而這樣的空閒鏈接若是都直接鏈接到服務器上的話,會加劇服務器負擔,而nginx在這方面作了很大的優化,能夠承載更多的鏈接,空閒鏈接也不會佔據太多內存,因此nginx做爲反向代理能下降上游服務器的負載。
server { listen 8001; server_name localhost; location / { proxy_pass http://10.3.6.31:8003; } }
proxy_pass:指定反向代理服務器