首頁 > 資料庫 > mysql教程 > Nginx日志记录cookie

Nginx日志记录cookie

WBOY
發布: 2016-06-07 15:10:48
原創
1251 人瀏覽過

Nginx的配置就好像做程序一样,其实很好玩。 笔记一下: server { listen 80; server_name www.aslibra.com; set $aslibra_auth ; if ( $http_cookie ~* aslibra_auth=(.+)(?:;|$) ){ set $aslibra_auth $1; } log_format main $proxy_add_x_forwarded_for -

Nginx的配置就好像做程序一样,其实很好玩。

笔记一下:

server {
   listen       80;
   server_name   www.aslibra.com;
   set $aslibra_auth "";
   if ( $http_cookie ~* "aslibra_auth=(.+)(?:;|$)" ){
     set $aslibra_auth $1;
   }

   log_format main       '$proxy_add_x_forwarded_for - $remote_user [$time_local] '
           '"$request" $status $bytes_sent '
           '"$http_referer" "$http_user_agent" $aslibra_auth ';
   access_log   /Data/log/nginx-access.log   main;

   location / {
     root   /Data/webapps/www.aslibra.com/;
     index   index.html index.htm;
   }

   error_page   500 502 503 504   /50x.html;
   location = /50x.html {
       root   html;
   }

}



参考分割日志的脚本:

#!/bin/bash
log_dir="/Data/log"
time=`date +%Y%m%d`  
/bin/mv   ${log_dir}/nginx-access.log ${log_dir}/nginx-access.$time.log
kill -USR1 `cat   /var/run/nginx.pid`

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板