原文:https://blog.51cto.com/11134648/2130987html
Nginx專爲性能優化而開發,最知名的優勢是它的穩定性和低系統資源消耗,以及對HTTP併發鏈接的高處理能力,單個物理服務器可支持30000-50000個併發請求。nginx
Nginx的安裝文件能夠從官方網站http://www.nginx.org/下載,下面以Nginx1.12版本爲例,基於CentOS7,部署Nginx網站服務。c++
Nginx的配置及運行須要gcc 、 gcc-c++ 、 make 、 pcre、pcre-devel、zlib-devel軟件包的支持,以便提供相應的庫和頭文件,確保Nginx安裝順利。shell
建立yum倉庫的步驟詳細步驟請參考 Linux下經過rdesktop遠程登錄Windows系統vim
yum install gcc gcc-c++ make pcre pcre-devel zlib-devel -y
若是是在有網絡的狀況下,CentOS7無需建立yum倉庫,直接執行yum list命令更新一下yum源,稍微等待一下子。centos
yum list //更新yum源 yum install gcc gcc-c++ make pcre pcre-devel zlib-devel -y
Nginx服務程序默認以nobody身份運行,建議爲其建立專門的用戶帳號,以便更準確的控制其訪問權限,增長靈活性,下降安全風險。瀏覽器
useradd -M -s /sbin/nologin nginx //建立一個名爲nginx用戶,不創建宿主文件夾,禁止登陸到shell環境
tar xzvf nginx-1.12.0.tar.gz -C /opt //解壓Nginx軟件至opt目錄下
cd /opt/nginx-1.12.0/ //切換到Nginx目錄下
根據實際須要配置Nginx的具體選項,配置前可參考「./configure --help」給出的說明。安全
./configure \
--prefix=/usr/local/nginx \
--user=nginx \
--group=nginx \
--with-http_stub_status_moduleruby
make //生成二進制文件 make install //編譯安裝
建立Nginx主程序的連接文件是爲了方便管理員直接「nginx」命令就能夠調用Nginx的主程序。性能優化
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
Nginx的主程序提供了「-t」選項來對配置文件進行檢查,以便找出不當或錯誤的配置。
[root@centos7-1 nginx-1.12.0]# nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
直接運行Nginx便可啓動Nginx服務器
[root@centos7-1 nginx-1.12.0]# nginx [root@centos7-1 nginx-1.12.0]# killall -1 nginx //重啓nginx服務 [root@centos7-1 nginx-1.12.0]# killall -3 nginx //中止nginx服務
爲了使nginx服務的啓動、中止、重載等操做更加方便,能夠編寫nginx服務腳本,並使用chkconfig和systemctl工具來進行管理,這更加符合系統的管理習慣。
[root@centos7-1 nginx-1.12.0]# vim /etc/init.d/nginx #!/bin/bash # chkconfig: - 99 20 # description: Nginx Service Control Script PROG="/usr/local/nginx/sbin/nginx" //主程序路徑 PIDF="/usr/local/nginx/logs/nginx.pid" //PID存放路徑 case "$1" in start) $PROG ;; stop) kill -s QUIT $(cat $PIDF) //根據PID停止nginx進程 ;; restart) $0 stop $0 start ;; reload) kill -s HUP $(cat $PIDF) //根據進程號重載配置 ;; *) echo "Usage: $0 {start|stop|restart|reload}" exit 1 esac exit 0
[root@centos7-1 nginx-1.12.0]# chmod +x /etc/init.d/nginx [root@centos7-1 nginx-1.12.0]# chkconfig --add nginx //添加爲系統服務 [root@centos7-1 nginx-1.12.0]# systemctl start nginx.service
經過檢查Nginx程序的監聽狀態,或者在瀏覽器中訪問此Web服務,默認頁面將顯示「Welcome to nginx!」
[root@centos7-1 nginx-1.12.0]# netstat -antp | grep nginx tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 54386/nginx: master [root@centos7-1 nginx-1.12.0]# yum install elinks -y [root@centos7-1 nginx-1.12.0]# elinks http://localhost //使用elinks瀏覽器
Nginx內置了HTTP_STUB_STATUS狀態統計模塊,用來反饋當前的Web訪問狀況。要使用Nginx的狀態統計功能,除了啓用內建模塊之外,還須要修改nginx.conf配置文件,指定訪問位置並添加stub_status配置代碼。
[root@centos7-1 nginx-1.12.0]# cd /usr/local/nginx/conf [root@centos7-1 conf]# mv nginx.conf nginx.conf.back [root@centos7-1 conf]# grep -v "#" nginx.conf.back > nginx.conf //過濾配置文件#號註釋的信息
[root@centos7-1 conf]# vim nginx.conf server { listen 80; server_name localhost; charset utf-8; location / { root html; index index.html index.htm; } //在"server"這裏插入的這4行的信息 location ~ /status { //訪問位置爲/status stub_status on; //打開狀態統計功能 access_log off; //關閉此位置的日誌記錄 } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
新的配置生效後,在瀏覽器中訪問nginx服務器的/status網站位置,能夠看到當前的狀態統計信息。
systemctl reload nginx.service //從新加載nginx服務 systemctl stop firewalld.service //關閉防火牆 systemctl disable firewalld.service //禁用防火牆
其中,「Active connections」表示當前的活動鏈接數;而「server accepts handled requests」表示已經處理的鏈接信息。三個數字依次表示已處理的鏈接數、成功的TCP握手次數、已處理的請求數。
(1).使用htpasswd生成用戶認證文件,若是沒有該命令,可以使用yum安裝httpd-tools軟件包,用法與Apache認證時方式同樣,在/usr/local/nginx/目錄生成passwd.db文件,用戶名是test,密碼輸入2次。
yum install httpd-tools -y //安裝httpd-tools軟件包
[root@centos7-1 ~]# htpasswd -c /usr/local/nginx/passwd.db test New password: //設置test用戶密碼 Re-type new password: Adding password for user test [root@centos7-1 ~]# cat /usr/local/nginx/passwd.db //查看生成的用戶認證文件 test:$apr1$WfkC0IdB$sMyjqJzg2tcqcIe1mJ8LI/
(2).修改密碼文件的權限爲400,將全部者改成nginx,設置nginx的運行用戶可以讀取。
[root@centos7-1 ~]# chmod 400 /usr/local/nginx/passwd.db [root@centos7-1 ~]# chown nginx /usr/local/nginx/passwd.db [root@centos7-1 ~]# ll -d /usr/local/nginx/passwd.db -r--------. 1 nginx root 43 6月 20 14:45 /usr/local/nginx/passwd.db
(3).修改主配置文件nginx.conf,添加相應認證配置項。
[root@centos7-1 ~]# vim /usr/local/nginx/conf/nginx.conf location / { auth_basic "secret"; //添加認證配置 auth_basic_user_file /usr/local/nginx/passwd.db; root html; index index.html index.htm; }
(4).檢測語法、重啓服務
[root@centos7-1 ~]# nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful [root@centos7-1 ~]# systemctl restart nginx.service
(5).用瀏覽器訪問網址,檢驗控制效果。
須要輸入用戶名和密碼進行訪問,驗證經過才能進行訪問。
Nginx基於客戶端的訪問控制要比Apache的簡單,規則以下:
(1).修改主配置文件nginx.conf,添加相應認證配置項。
[root@centos7-1 ~]# vim /usr/local/nginx/conf/nginx.conf location / { deny 192.168.113.132; //客戶端IP allow all; root html; index index.html index.htm; }
deny 192.168.113.132表示這個ip地址訪問會被拒絕,其餘IP客戶端正常訪問。
(2).重啓服務器訪問網址,頁面已經訪問不到。
[root@centos7-1 ~]# systemctl restart nginx.service
要注意的是若是是用域名訪問網頁,須要配置DNS域名解析服務器,詳細步驟參考使用Bind部署DNS域名解析服務器之正向解析