nginx菜鸟教程四

nginx允许针对不同的server做不同的log

#access_log  logs/host.access.log  main;

说明 该server,它的访问日志的文件是logs/host.access.log,

使用的格式“main”格式

除了main格式,你可以自定义其他格式。


main格式是我们定义好一种日志的格式,并起这个名字,便于引用。

以下的例子,main类型的日志,记录的remote_addr...http_x_forwarded_for

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '

    #                  '$status $body_bytes_sent "$http_referer" '

    #                  '"$http_user_agent" "$http_x_forwarded_for"';

如默认的main日志格式,记录这么几项

远程IP-远程用户/用户时间 请求方法(如GET/POST)请求body长度,refer来源信息

http_user_agent用户代理/蜘蛛,被转发的请求的原始IP

http_x_forwarder_for在经过代理时,代理把你的本来IP加载此头信息中,传输你的原始IP


你可能感兴趣的:(nginx菜鸟教程四)