事例一:
server {
listen 80; server_name www.it.net.cn; 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.it.net.cn/; 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`
事例(二)
现有一需求,需要把我们手机网站的cookie信息记录到access.log里,数据挖掘部门需要根据这个来统计用户行为。其实我还真没有这样记录过日志,后来百度了一下,发现Nginx确实很强大。
location /logs {
事例(三) set $user_id "0";#获取uuid set $uuid "_"; if ( $http_cookie ~* "user_id=([0-9]*)" ){ set $user_id $1; } if ( $http_cookie ~* "_uuid=([A-Za-z0-9 ]*)" ){ set $uuid $1; }
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' (责任编辑:IT) |