這篇文章主要介紹了關於Nginx常用的官方模組,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
Nginx采用模块化的架构,Nginx中大部分功能都是通过模块方式提供的,比如HTTP模块、Mail模块等。
Nginx官方模組文件
--with-http_stub_status_module
Syntax: stub_status; Default: — Context: server, location
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
: 處理客戶端連線的總次數。一般來說,這個參數值與accepts相同,除非已經達到了一些資源限制(例如worker_connections限制)
: 目前正在等待請求的空閒客戶端連接數。一般是在nginx開啟長連線(keep alive)情況下出現。
--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; } ...其它代码省略... }
--with-ngx_http_sub_module
作用
語法
Syntax: sub_filter string replacement; Default: — Context: http, server, location
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中文網其他相關文章!