码迷,mamicode.com
首页 > 其他好文 > 详细

nginx记录post数据日志

时间:2016-03-22 12:15:52      阅读:550      评论:0      收藏:0      [点我收藏+]

标签:

 1、vi nginx.conf

找到http {}中log_foramt ,定义post 日志格式

    #log_format  main  $remote_addr - $remote_user [$time_local] "$request" 
    #                  $status $body_bytes_sent "$http_referer" 
    #                  "$http_user_agent" "$http_x_forwarded_for";

    log_format post_log $remote_addr - $remote_user [$time_local] -- $request_body;

有日志demo形式,可根据自己需要配置日志格式。

2、在location php 解析{}中加入记录日志

access_log /opt/log/post.log post_log;

保存。重启即可

nginx记录post数据日志

标签:

原文地址:http://www.cnblogs.com/already/p/5305530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!