国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Nginx 學習筆記(一)

lsxiao / 2840人閱讀

摘要:示例常用指令啟用目錄瀏覽功能配置參考啟用訪問的狀態信息配置輸出活躍的連接數量總共處理了個連接成功創建次握手總共處理了個請求讀取客戶端的連接數響應數據到客戶端的數量開啟的情況下這個值等于意思就是已經處理完正在等候下一次請求指令的駐留連接參考

示例
http {
  server {
    listen          80;
    server_name     www.domain1.com;
    access_log      logs/domain1.access.log main;
    location / {
      index index.html;
      root  /var/www/domain1.com/htdocs;
    }
  }
  server {
    listen          80;
    server_name     www.domain2.com;
    access_log      logs/domain2.access.log main;
    location / {
      index index.html;
      root  /var/www/domain2.com/htdocs;
    }
  }
}
常用指令(Directives) 1. autoindex (啟用目錄瀏覽功能)

配置

location / {
    autoindex on;
}

參考:

http://nginx.org/en/docs/http/ngx_http_autoindex_module.html

2. stub_status (啟用訪問 nginx 的狀態信息)

配置

location /basic_status {
    stub_status on;
}

輸出

Active connections: 2 
server accepts handled requests
 8 8 224 
Reading: 0 Writing: 1 Waiting: 1 

active connections – 活躍的連接數量
server accepts handled requests — 總共處理了n個連接 , 成功創建n次握手, 總共處理了n個請求
reading — 讀取客戶端的連接數.
writing — 響應數據到客戶端的數量
waiting — 開啟 keep-alive 的情況下,這個值等于 active – (reading+writing), 意思就是 Nginx 已經處理完正在等候下一次請求指令的駐留連接.

參考

http://nginx.org/en/docs/http/ngx_http_stub_status_module.html

http://www.ttlsa.com/nginx/nginx-status-detail/

3. access_log (記錄請求日志)

參考

http://nginx.org/en/docs/http/ngx_http_log_module.html

http://www.ttlsa.com/linux/the-nginx-log-configuration/

4. rewrite (記錄請求日志)

參考

http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite

http://blog.c1gstudio.com/archives/434

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39203.html

相關文章

  • springMvc學習筆記(2)

    摘要:筆記這周學習安裝和配置和,為測試做準備。該軟件由創建,并于年首次公開發布。同名公司成立于年,以提供支持。從年月開始,的開發由贊助,而年月至年月期間,其開發由贊助。最后發現是因為中的中的應該為大寫將其改為及解決了此問題。 筆記 這周學習安裝和配置nginx和redis,為測試做準備。showImg(https://segmentfault.com/img/bVbpdYF?w=660&h=...

    Shonim 評論0 收藏0
  • Linux 學習筆記(六):Linux

    摘要:查看查看狀態添加端口查看防火墻規則相關文章學習筆記一內網穿透學習筆記二搭建個人服務器學習筆記三操作系統學習筆記四學習筆記五學習筆記六 預期學習目標 CentOS的安裝 相關命令的學習 腳本的編寫 定時任務的編寫 vim的學習 系統設置 項目部署 項目權限設置 確認 SELinux 的狀態 [root@centos7 ~]$ /usr/sbin/sestatus -v # SELi...

    時飛 評論0 收藏0

發表評論

0條評論

lsxiao

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<