1. 程式人生 > >LNMP之nginx日誌管理

LNMP之nginx日誌管理

bsp ica borde rep 單獨 for ase rgb ott

nginx訪問日誌

nginx的虛擬主機的訪問日誌都是保存在/usr/local/nginx/logs/access.log。但是這樣並不能方便我們查看,所以我們需要針對單獨的虛擬主機進行修改。

一、NGINX訪問日誌格式

我們可以在nginx.conf中定義訪問日誌的格式

查看訪問日誌格式

grep  -A2 "log_format"  /usr/local/nginx/conf/nginx.conf
log_format allen '$remote_addr $http_x_forwarded_for [$time_local]'' 
$host "$request_uri" $status'' "$http_referer" "$http_user_agent"';
grep  -A2 "log_format"  /usr/local/nginx/conf/nginx.conf
log_format allen '$remote_addr $http_x_forwarded_for [$time_local]'' 
$host "$request_uri" $status'' "$http_referer" "$http_user_agent"';



LNMP之nginx日誌管理