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

資訊專欄INFORMATION COLUMN

Nginx 學(xué)習(xí)筆記(一)

lsxiao / 2849人閱讀

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

示例
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 的狀態(tài)信息)

配置

location /basic_status {
    stub_status on;
}

輸出

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

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

參考

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

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/39203.html

相關(guān)文章

  • springMvc學(xué)習(xí)筆記(2)

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

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

    摘要:查看查看狀態(tài)添加端口查看防火墻規(guī)則相關(guān)文章學(xué)習(xí)筆記一內(nèi)網(wǎng)穿透學(xué)習(xí)筆記二搭建個人服務(wù)器學(xué)習(xí)筆記三操作系統(tǒng)學(xué)習(xí)筆記四學(xué)習(xí)筆記五學(xué)習(xí)筆記六 預(yù)期學(xué)習(xí)目標 CentOS的安裝 相關(guān)命令的學(xué)習(xí) 腳本的編寫 定時任務(wù)的編寫 vim的學(xué)習(xí) 系統(tǒng)設(shè)置 項目部署 項目權(quán)限設(shè)置 確認 SELinux 的狀態(tài) [root@centos7 ~]$ /usr/sbin/sestatus -v # SELi...

    時飛 評論0 收藏0

發(fā)表評論

0條評論

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