摘要:示例常用指令啟用目錄瀏覽功能配置參考啟用訪問的狀態信息配置輸出活躍的連接數量總共處理了個連接成功創建次握手總共處理了個請求讀取客戶端的連接數響應數據到客戶端的數量開啟的情況下這個值等于意思就是已經處理完正在等候下一次請求指令的駐留連接參考
示例
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
摘要:筆記這周學習安裝和配置和,為測試做準備。該軟件由創建,并于年首次公開發布。同名公司成立于年,以提供支持。從年月開始,的開發由贊助,而年月至年月期間,其開發由贊助。最后發現是因為中的中的應該為大寫將其改為及解決了此問題。 筆記 這周學習安裝和配置nginx和redis,為測試做準備。showImg(https://segmentfault.com/img/bVbpdYF?w=660&h=...
摘要:查看查看狀態添加端口查看防火墻規則相關文章學習筆記一內網穿透學習筆記二搭建個人服務器學習筆記三操作系統學習筆記四學習筆記五學習筆記六 預期學習目標 CentOS的安裝 相關命令的學習 腳本的編寫 定時任務的編寫 vim的學習 系統設置 項目部署 項目權限設置 確認 SELinux 的狀態 [root@centos7 ~]$ /usr/sbin/sestatus -v # SELi...
閱讀 2907·2023-04-26 01:01
閱讀 3682·2021-11-23 09:51
閱讀 2514·2021-11-22 14:44
閱讀 3542·2021-09-23 11:57
閱讀 2826·2021-09-22 14:58
閱讀 5866·2021-09-10 11:25
閱讀 2100·2019-08-30 13:11
閱讀 1590·2019-08-30 12:59