首頁 > 軟體

Nginx速查手冊及常見問題

2022-04-07 19:01:55

Nginx是一款輕量級的HTTP伺服器,採用事件驅動的非同步非阻塞處理方式框架,這讓其具有極好的IO效能,時常用於伺服器端的反向代理和負載均衡。

常用命令

使用自定義組態檔啟動

nginx -c /opt/nginx/config/nginx.conf 

柔和重啟

nginx -s reload

優雅停止服務

nginx -s quit

強制停止服務

nginx -s stop

組態檔檢查

nginx -t

常用設定

反向代理

server {  
  listen 80;                                                         
  server_name localhost;                                               
  client_max_body_size 1024M;

  location / {
    proxy_pass http://localhost:8080;
    proxy_set_header Host $host:$server_port;
  }
}

負載均衡

upstream test {
  server localhost:8080;
  server localhost:8081;
}
server {
  listen 81;                                                         
  server_name localhost;                                               
  client_max_body_size 1024M;

  location / {
    proxy_pass http://test;
    proxy_set_header Host $host:$server_port;
  }
}

http伺服器

server {
  listen 80;                                                         
  server_name localhost;                                               
  client_max_body_size 1024M;

  location / {
    root e:wwwroot;
    index index.html;
  }
}

動靜分離

upstream test{  
  server localhost:8080;  
  server localhost:8081;  
}   

server {  
  listen 80;  
  server_name localhost;  

  location / {  
    root d:wwwroot;  
    index index.html;  
  }  

  --所有靜態請求都由nginx處理,存放目錄為html  
  location ~ .(gif|jpg|jpeg|png|bmp|swf|css|js)$ {  
    root d:wwwroot;  
  }  

  --所有動態請求都轉發給tomcat處理  
  location ~ .(jsp|do)$ {  
    proxy_pass http://test;  
  }  

  error_page 500 502 503 504 /50x.html;  
  location = /50x.html {  
    root d:wwwroot;  
  }  
}

正向代理

resolver 114.114.114.114 8.8.8.8;
  server {
    resolver_timeout 5s;
    listen 81;
    access_log d:wwwrootproxy.access.log;
    error_log d:wwwrootproxy.error.log;
    location / {
      proxy_pass http://$host$request_uri;
    }
  }
#防盜鏈
location ~* .(gif|jpg|png)$ {
    # 只允許 192.168.0.1 請求資源
    valid_referers none blocked 192.168.0.1;
    if ($invalid_referer) {
       rewrite ^/ http://$host/logo.png;
}

根據檔案型別設定過期時間

location ~.*.css$ {
    expires 1d;
    break;
}
location ~.*.js$ {
    expires 1d;
    break;
}

location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ {
    access_log off;
    expires 15d; #儲存15天
    break;
}

匹配規則

location = / {
  # 精確匹配 / ,主機名後面不能帶任何字串
  [ configuration A ]
}
location / {
  # 因為所有的地址都以 / 開頭,所以這條規則將匹配到所有請求
  # 但是正則和最長字串會優先匹配
  [ configuration B ]
location /documents/ {
  # 匹配任何以 /documents/ 開頭的地址,匹配符合以後,還要繼續往下搜尋
  # 只有後面的正規表示式沒有匹配到時,這一條才會採用這一條
  [ configuration C ]
location ~ /documents/Abc {
  # 匹配任何以 /documents/Abc 開頭的地址,匹配符合以後,還要繼續往下搜尋
  [ configuration CC ]
location ^~ /images/ {
  # 匹配任何以 /images/ 開頭的地址,匹配符合以後,停止往下搜尋正則,採用這一條。
  [ configuration D ]
location ~* .(gif|jpg|jpeg)$ {
  # 匹配所有以 gif,jpg或jpeg 結尾的請求
  # 然而,所有請求 /images/ 下的圖片會被 config D 處理,因為 ^~ 到達不了這一條正則
  [ configuration E ]
location /images/ {
  # 字元匹配到 /images/,繼續往下,會發現 ^~ 存在
  [ configuration F ]
location /images/abc {
  # 最長字元匹配到 /images/abc,繼續往下,會發現 ^~ 存在
  # F與G的放置順序是沒有關係的
  [ configuration G ]
location ~ /images/abc/ {
  # 只有去掉 config D 才有效:先最長匹配 config G 開頭的地址,繼續往下搜尋,匹配到這一條正則,採用
    [ configuration H ]

常見問題

# root 和 alias的區別?
**root**
location /i/ {
  root /data/wwwroot;
}
真實的路徑是root指定的值加上location指定的值,即/data/wwwroot/i/...

**alias**
location /i/ {
  alias /data/wwwroot/;
}
在伺服器查詢的資源路徑是: /data/wwwroot/...

到此這篇關於Nginx速查手冊的文章就介紹到這了,更多相關Nginx速查手冊內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com