log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" "$ssl_client_s_dn"';
map $remote_addr $log_ip {
"~^192.168." 0;
default 1;
}
access_log /var/log/nginx/access.log main if=$log_ip;
Written with StackEdit.
Comments