首頁  >  文章  >  後端開發  >  關於Nginx常用的官方模組

關於Nginx常用的官方模組

不言
不言原創
2018-07-13 16:08:171750瀏覽

這篇文章主要介紹了關於Nginx常用的官方模組,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

Nginx常用官方模組

Nginx采用模块化的架构,Nginx中大部分功能都是通过模块方式提供的,比如HTTP模块、Mail模块等。

Nginx官方模組文件

1.ngx_http_stub_status_module

編譯選項##
--with-http_stub_status_module

作用

提供Nginx目前處理連線等基本狀態資訊的存取

語法
Syntax:        stub_status;
Default:    —
Context:    server, location

用法

  • 在nginx設定檔中的server 下設定

server {
    # 添加的配置
    location /nginx_status {
        stub_status;
    }
    
    ...其它代码省略...
}
  • 修改後重新載入設定檔

    nginx -s reload







在瀏覽器中存取http://<ip>/nginx_status,會傳回以下內容

Active connections: 3 
server accepts handled requests
 7 7 16 
Reading: 0 Writing: 1 Waiting: 2

Active connections: Nginx目前活躍連結數

accepts: 接收客戶端連線的總次數

handled

: 處理客戶端連線的總次數。一般來說,這個參數值與accepts相同,除非已經達到了一些資源限制(例如worker_connections限制)

requests: 客戶端請求的總次數

Reading

: 當前nginx正在讀取請求頭的連線數Writing

: 當前nginx正在寫入回應的連線數
  • Reading

    : 目前正在等待請求的空閒客戶端連接數。一般是在nginx開啟長連線(keep alive)情況下出現。

  • 2. ngx_http_random_index_module

編譯選項

--with-http_random_index_module

作用

#在主目錄中選擇一個隨機檔案作為主頁

語法

Syntax:        random_index on | off;
Default:    random_index off;
Context:    location

用法

在nginx設定檔中的server 下配置

server {
    location / {
        root /usr/share/nginx/html;
        #添加这一行开启随机主页模块
        random_index on;
        #把指定的主页注释掉
        #index index.html index.htm;
    }
    
    ...其它代码省略...
}

3. ngx_http_sub_module

編譯選項
    ##
--with-ngx_http_sub_module
  • 作用

  • 透過替換一個指定的字串來修改回應
    • 語法

      指定被取代的字元和替代字元
    Syntax:    sub_filter string replacement;
    Default:   —
    Context:    http, server, location
  • Last-Modified,用於校驗服務端內容是否更改,主要用於快取場景

    Syntax:       sub_filter_last_modified on | off;
    Default:   sub_filter_last_modified off;
    Context:    http, server, location
    預設只取代找到的第一個字串,若取代文字中的所有符合的字串,則置為off#
    Syntax:       sub_filter_once on | off;
    Default:    sub_filter_once on;
    Context:    http, server, location
    除了「text/html」之外,還可以用指定的MIME類型取代字串。特殊值'*'符合任意MIME類型
  • Syntax:       sub_filter_types mime-type ...;
    Default:    sub_filter_types text/html;
    Context:    http, server, location

    用法

    ######################################################## ###
    server {
        location / {
            root   /usr/share/nginx/html;
            index  index.html;
            # 将首页的nginx替换为home
            sub_filter 'nginx' 'home';
            # 不止替换第一个,而是替换response中所有的nginx
            sub_filter_once off;
        }
        
        ...其它代码省略...
    }
    #########修改後重新載入設定檔###nginx -s reload##################curl localhost### ,返回如下內容,會發現響應中所有nginx已經替換為home#########
    [vagrant/etc/nginx]$ curl localhost
    <!DOCTYPE html>
    <html>
    <head>
    <title>Welcome to home!</title>
    <style>
        body {
            width: 35em;
            margin: 0 auto;
            font-family: Tahoma, Verdana, Arial, sans-serif;
        }
    </style>
    </head>
    <body>
    <h1>Welcome to home!</h1>
    <p>If you see this page, the home web server is successfully installed and
    working. Further configuration is required.</p>
    
    <p>For online documentation and support please refer to
    <a href="http://home.org/">home.org</a>.<br/>
    Commercial support is available at
    <a href="http://home.com/">home.com</a>.</p>
    
    <p><em>Thank you for using home.</em></p>
    </body>
    </html>
    ###以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網! ######相關推薦:#########關於php-fpm的進程數管理############為Nginx 新增模組的方法###### #########快速建立Nginx及其基本參數的設定#########

    以上是關於Nginx常用的官方模組的詳細內容。更多資訊請關注PHP中文網其他相關文章!

    陳述:
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn