Nginx 使用筆記

2021-10-01 01:45:11 字數 1054 閱讀 1325

程序&關係

1master-n workers  乙個主程序,多個工作程序

├── conf    配置檔案目錄

│   ├── fastcgi.conf

│   ├── fastcgi.conf.default

│   ├── fastcgi_params

│   ├── fastcgi_params.default

│   ├── koi-utf

│   ├── koi-win

│   ├── mime.types   設定mime型別

│   ├── mime.types.default

│   ├── nginx.conf   預設配置檔案

│   ├── nginx.conf.default

│   ├── scgi_params

│   ├── scgi_params.default

│   ├── uwsgi_params

│   ├── uwsgi_params.default

│   └── win-utf

├── html  靜態檔案

│   ├── 50x.html

│   ├── ccbcq0901publickey.txt

│   ├── index.html

├── log  日誌目錄

│   ├── access.log   請求訪問日誌

│   └── error.log      錯誤日誌

├── nginx.pid     記錄程序號

├── sbin         可執行檔案目錄

│   └── nginx      nginx執行入口

└── temp

└── nginx

├── client

├── fastcgi

├── proxy

├── scgi

└── uwsgi

最核心的是http,

nginx使用筆記

參考自官方文件 案例分析 假如有配置檔案 location hi那麼,如果原始請求的 url 是的話,則被 伺服器收到的 url 是什麼?答案是http 被 伺服器網域名稱.com hi。如果配置檔案是這樣 location hi那麼,如果原始請求的 url 是的話,則被 伺服器收到的 url 是什...

Nginx使用筆記

本篇記錄使用nginx的一些tricks。修改配置檔案 nginx預設的web根目錄是 usr share nginx html 一般我們都是習慣的是 var www html。現進行更改,具體操作如下 lz mail sudo cat etc nginx conf.d default.confse...

nginx使用筆記

1.反向 時攜帶真實ip location 2.用nginx做web伺服器,如果沒有處理好日誌,日誌檔案可能會很恐怖 10g 20g。可以修改nginx.conf 找到access log access log dev null error log dev null 這樣全部把他們丟到系統的黑洞裡了...