1. 程式人生 > 其它 >Nginx Web快速入門—基礎

Nginx Web快速入門—基礎

Nginx Web快速入門—基礎

Nginx Web快速入門—基礎

Nginx的概述

Nginx是什麼

## Nginx是一個開源且高效能、可靠的Http Web服務、代理服務

開源:直接獲取原始碼,GPL協議(GPL協議:開源組織規定:只要軟體打上GPL這個標籤,軟體一律開源不收費,可以隨意修改原始碼,二次開發後必須開源出來,不收費)

高效能:支援海量併發(併發是同一時刻的訪問量)

可靠:服務穩定

靜態Web軟體

nginx:官方
apache
IIS
lighttpd
tengine:第三方開發(阿里,淘寶開發)
openresty-nginx:第三方開發,支援LUA語言

動態的Web軟體

Tomcat:javar的容器
Resin:javar的容器
weblogic:收費,穩定 
Jboss

選擇Nginx的原因

Nginx非常輕量

功能模組少 (原始碼僅保留http與核心模組程式碼,其餘不夠核心程式碼會作為外掛來安裝)
程式碼模組化 (易讀,便於二次開發,對於開發人員非常友好)

網際網路公司都選擇Nginx

1.Nginx技術成熟,具備的功能是企業最常使用而且最需要的
2.適合當前主流架構趨勢, 微服務、雲架構、中間鍵
3.統一技術棧, 降低維護成本, 降低技術更新成本(防火牆,負載均衡,web,都可以是nginx來做)

Nginx採用Epool網路模型,Apache採用Select模型

Select: 當用戶發起一次請求,select模型就會進行一次遍歷掃描,從而導致效能低下。
Epool: 當用戶發起請求,epool模型會直接進行處理,效率高效,並無連線限制。

Nginx應用場景

靜態服務 代理服務 安全服務 流行架構
瀏覽器快取 協議型別 訪問控制 Nginx+PHP(Fastcgi_pass)LNMP
防資源盜用 正向代理 訪問限制 Nginx+Java(Proxy_Pass)LNMT
資源分類 反向代理 流量限制 Nginx+Vue+Python(uwsgi_Pass)
資源壓縮 負載均衡 攔截攻擊
資源快取 代理快取 攔截異常請求
跨越訪問 動靜分離 攔截SQL注入

原始碼安裝Nginx

Nginx的官方網站:TP
  • 1.獲取nginx的原始碼包
[root@web02 ~]# mkdir /source_code
[root@web02 ~]# cd /source_code/
[root@web01 source_code]# wget https://nginx.org/download/nginx-1.20.1.tar.gz
[root@web02 /source_code]# ll
-rw-r--r-- 1 root root 1061461 May 25 23:34 nginx-1.20.1.tar.gz
  • 2.安裝nginx的依賴包
[root@web02 /source_code]# yum install -y zlib-devel
[root@web02 /source_code]# yum install -y pcre-devel
  • 3.解壓原始碼包
[root@web02 /source_code]# tar xf nginx-1.20.1.tar.gz 
[root@web02 /source_code]# ll
drwxr-xr-x 8 1001 1001     158 May 25 20:35 nginx-1.20.1
-rw-r--r-- 1 root root 1061461 May 25 23:34 nginx-1.20.1.tar.gz
  • 4.生成Mkefile自定義檔案(定製化需求)
[root@web02 /source_code/nginx-1.20.1]# mkdir /app
[root@web02 /source_code/nginx-1.20.1]# ./configure --prefix=/app/nginx-1.20.1
[root@web02 /source_code/nginx-1.20.1]# ll
drwxr-xr-x 6 1001 1001    326 Jul 16 00:54 auto         
-rw-r--r-- 1 1001 1001 311503 May 25 20:35 CHANGES
-rw-r--r-- 1 1001 1001 475396 May 25 20:35 CHANGES.ru
drwxr-xr-x 2 1001 1001    168 Jul 16 00:54 conf          ##nginx配置檔案
-rwxr-xr-x 1 1001 1001   2590 May 25 20:35 configure     ##生成
drwxr-xr-x 4 1001 1001     72 Jul 16 00:54 contrib
drwxr-xr-x 2 1001 1001     40 Jul 16 00:54 html
-rw-r--r-- 1 1001 1001   1397 May 25 20:35 LICENSE
-rw-r--r-- 1 root root    442 Jul 16 02:56 Makefile
drwxr-xr-x 2 1001 1001     21 Jul 16 00:54 man
drwxr-xr-x 3 root root    125 Jul 16 02:56 objs
-rw-r--r-- 1 1001 1001     49 May 25 20:35 README
drwxr-xr-x 9 1001 1001     91 Jul 16 00:54 src          ##原始碼存放目錄

  • 5.編譯(按照Makefile編譯)
[root@web02 /source_code/nginx-1.20.1]# make
  • 6安裝
[root@web02 /source_code/nginx-1.20.1]# make install
[root@web02 /app/nginx-1.20.1]# ll
drwxr-xr-x 2 root root 333 Jul 16 03:05 conf     ## 配置檔案
drwxr-xr-x 2 root root  40 Jul 16 03:05 html     ## 站點目錄
drwxr-xr-x 2 root root   6 Jul 16 03:05 logs     ##日誌檔案
drwxr-xr-x 2 root root  19 Jul 16 03:05 sbin     ##啟動的命令
  • 7.安裝後做軟連結
[root@web02 /app/nginx-1.20.1]# ln -s /app/nginx-1.20.1/ /app/nginx
[root@web02 /app]# ll
lrwxrwxrwx 1 root root 18 Jul 16 03:14 nginx -> /app/nginx-1.20.1/
drwxr-xr-x 6 root root 54 Jul 16 03:05 nginx-1.20.1
  • 8.新增nginx命令的環境變數
[root@web02 /app]# vim /etc/profile
PATH="/app/nginx/sbin:$PATH"

[root@web02 /app]# echo $PATH
/app/nginx/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
  • 9.載入環境變數
[root@web02 /app]# source /etc/profile
  • 10.檢測配置檔案
[root@web02 /app]# nginx -t
nginx: the configuration file /app/nginx-1.20.1/conf/nginx.conf syntax is ok
nginx: configuration file /app/nginx-1.20.1/conf/nginx.conf test is successful
  • 11.啟動nginx服務
[root@web02 /app]# nginx

## 停止nginx
[root@web02 /app]# nginx -s stop
[root@web02 /app]# ps -ef|grep [n]ginx
root      11728   7926  0 03:41 pts/1    00:00:00 grep --color=auto nginx

## 重新載入
[root@web02 /app]# nginx -s reload
  • 12.檢測nginx進度
[root@web02 /app]# ps -ef|grep [n]ginx
root      11689      1  0 03:32 ?        00:00:00 nginx: master process nginx
nobody    11690  11689  0 03:32 ?        00:00:00 nginx: worker process
  • 13.檢測nginx的埠
[root@web02 /app]# netstat -lntup|grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      11689/nginx: master 

開啟瀏覽器:http://10.0.0.8

Yum安裝nginx

官網找安裝nginx源的配置資訊



  • 1.新增nginx的官方源
[root@web02 /app]# vim /etc/yum.repos.d/nginx.repo

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
  • 2.安裝nginx
[root@web02 /etc/yum.repos.d]# yum install -y nginx
  • 檢查版本
[root@web02 /etc/yum.repos.d]# /sbin/nginx -v
nginx version: nginx/1.20.1
  • 檢視安裝nginx的功能
[root@web02 /etc/yum.repos.d]# /sbin/nginx -V

 --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --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.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

Nginx相關配置檔案

1.Nginx主配置檔案

路徑 型別 作用
/etc/nginx/nginx.conf 配置檔案 nginx主配置檔案
/etc/nginx/conf.d/default.conf 配置檔案 預設網站配置檔案(虛擬主機配置檔案)

2.Nginx代理相關引數檔案

路徑 型別 作用
/etc/nginx/fastcgi_params 配置檔案 Fastcgi代理配置檔案
/etc/nginx/scgi_params 配置檔案 scgi代理配置檔案
/etc/nginx/uwsgi_params 配置檔案 uwsgi代理配置檔案

3.Nginx編碼相關配置檔案

路徑 型別 作用
/etc/nginx/win-utf 配置檔案 Nginx編碼轉換對映檔案
/etc/nginx/koi-utf 配置檔案 Nginx編碼轉換對映檔案
/etc/nginx/koi-win 配置檔案 Nginx編碼轉換對映檔案
/etc/nginx/mime.types 配置檔案 Nginx編碼轉換對映檔案

4.Nginx管理相關命令

路徑 型別 作用
/usr/sbin/nginx 命令 Nginx命令列管理終端工具
/usr/sbin/nginx-debu 命令 Nginx命令列與終端除錯工具

5.Nginx日誌相關目錄與檔案

路徑 型別 作用
/var/log/nginx 目錄 Nginx預設存放日誌目錄
/etc/logrotate.d/nginx 配置檔案 Nginx預設的日誌切割

Nginx的配置檔案講解

[root@web02 ~]# vim /etc/nginx/nginx.conf 
-------------------------- 核心模組 -------------------------
## 服務的啟動使用者
user nginx;
## worker程序(子程序),根據cpu的核心數
worker_processes auto;
## 錯誤日誌,以及日誌的級別
error_log /var/log/nginx/error.log notice;
## pid檔案的存放路徑
pid /var/run/nginx.pid;
-------------------------------------------------------------



----------------------- 事件驅動模組 -------------------------
events {
## 每個worker程序最大連線數
worker_connections 1024;
}
-------------------------------------------------------------



------------------------ HTTP網站配置 ----------------------------
http {
     server {
   }
   ## 預設nginx支援的檔案型別
   include /etc/nginx/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 /var/log/nginx/access.log main;

    ## 高效檔案傳輸
    sendfile on;
    #tcp_nopush on;

    ## 長連結超時時間
    keepalive_timeout 65;
    
    ## 傳輸過程中壓縮
    #gzip on;

    ## 虛擬主機相關配置(網站的配置)
    server {    
         ## 監聽在80埠
         listen   80;         
         ## IPv6
         listen [::]:80;    
         ## 配置訪問的域名或者IP
         server_name _;
         # 該網站的站點目錄
         root /usr/share/nginx/html;               
         ## 404頁面的報錯路徑
         error_page 404 /404.html;    
         ## 404URL
         location = /404.html {
         }
         ## 5xx頁面的報錯路徑
         error_page 500 502 503 504 /50x.html;
         ## 5xxURL
         location = /50x.html {
         } 
      }        
        ## 包含所有nginx的虛擬主機配置檔案
        include /etc/nginx/conf.d/*.conf;      
}    
-------------------------------------------------------------