nginx簡單配置

2021-09-21 03:26:54 字數 1907 閱讀 2635

nginx.conf

root   html;  **目錄

通過官方檢視模組幫助 

.├── client_body_temp            

├── conf

│   ├──fastcgi.conf    動態配置

│   ├── fastcgi.conf.default

│   ├──fastcgi_params    引數

│   ├── fastcgi_params.default

│   ├── koi-utf

│   ├── koi-win

│   ├── mime.types

│   ├── mime.types.default

│   ├──nginx.conf      靜態配置檔案

│   ├── nginx.conf.default

│   ├── scgi_params

│   ├── scgi_params.default

│   ├── uwsgi_params

│   ├── uwsgi_params.default

│   └── win-utf

├── fastcgi_temp

├──html

│   ├── 50x.html   出錯

│   └──index.html

├──logs

│   ├──access.log

│   ├──error.log

│   └──nginx.pid

├── proxy_temp

├── sbin

│   └──nginx

├── scgi_temp

└── uwsgi_temp

egrep -v "#|^$"   nginx.conf  | cat -n

1worker_processes1;和cpu核心數相當     效率

17          error_page   500 502 503 504   /50x.html;         指定錯誤頁面

18          location = /50x.html

21      }

22}

開始配置

server

server

/sbin/nginx   -s reload

301跳轉

server

解決惡意ip繫結

server

}日誌切割

/bin/mv www_access.log  www_access_$(date  +%f  -d  -1day).log

crontab -e    

日誌相關分析  awstats

200 正常  301 永久跳轉    403  禁止訪問   404 找不到請求的頁面   500  內部伺服器錯誤   502  壞的閘道器  503  服務當前不可用

nginx 簡單配置

server 檔案快取 js css檔案快取 location js css 不把css js image相應的資源檔案寫入快取,會導致資源檔案404,無法被訪問。至於快取的時間長短可以自己設定。在nginx的location和配置中location的順序沒有太大關係。與location表示式的型別...

簡單配置nginx

在mac下配置nginx 1,安裝 brew install nginx 2,啟動nginx 在終端鍵入 nginx 回車 3,在瀏覽器裡輸入localhost 8080 出現welcome to nginx 說明成功 安裝 nginx v 檢視版本號 4 cd usr local etc ngin...

Nginx簡單配置

一 屬性說明 1.remote addr 與 http x forwarded for 用以記錄客戶端的 ip 位址 2.remote user 用來記錄客戶端使用者名稱 3.time local 用來記錄訪問時間與時區 4.request 用來記錄請求的 url 與 http 協議 5.statu...