1. 程式人生 > >nginx模塊

nginx模塊

def -c img log and nginx -t ont pts 打開

nginx模塊

官方模塊和第三方模塊

官方模塊

1、--with-http_stub_status_module:nginx的客戶端狀態

http_stub_status_module配置

語法:stub_status;

內容:server、location

打開文件/etc/nginx/conf.d/default.conf

技術分享

檢查配置語法

nginx -tc /etc/nginx/nginx.conf 

重載服務

nginx -s reload -c /etc/nginx/nginx.conf

打開瀏覽器訪問

http://192.168.137.11/mystatus

技術分享

上面圖片中內容介紹

  • Active connections:nginx當前活躍的連接數
  • server accepts handled requests:三個數分別表示nginx接收握手的總次數、nginx處理的連接總數、總請求數
  • Reading:正在讀的
  • Writing:正在寫的
  • Waiting:正在等待,開啟keeplive後

nginx模塊